1 2 3 4
<?php class MyClass { ...
PHP Exception handling
1 2 3 4
<?php function cat_paging() { ...
PHP Set apart this function to ...
I want to setapart paging l...
1 2 3 4
<?php function canlink() { echo '<link rel="canonical" href="http://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] . '" />'; ...
PHP Canonical Link Code | Remov...
Take a look at what I've wr...
1 2 3 4
<?php function shorturl($url){ $length = strlen($url); ...
PHP Short URL Function with PHP
A code block for php coders...
1 2 3 4
<? # Domain Name Variable ...
PHP Check Server Status with PHP
Here's server status checke...
1 2 3 4
function validateIban($value) {
$iban = false;
$value= strtoupper(trim($value));
...
PHP IBAN Validation with PHP
Here's the Php code block t...
1 2 3 4
<?php // char coding ...
PHP Get Meta Information of an ...
Hello Php Coders,
It'll ...
1 2 3 4
public function view($id = 0)
{
$debate = ORM::factory('debate')->with('user')->with('category')->find($id);
...
PHP Better way to check whether...
Code for a view debate page...
1 2 3 4
$debates = ORM::factory('debate')->with('user')->with('category');
// what debates are we showing?
...
PHP Code seems inefficient. Sug...
User profile page. Want to ...
1 2 3
<-- This is the form code from the parent html page-->
...
PHP Post resending with parent ...
I have a simple shoutbox th...
1 2 3 4
/* IBAN Validator * Jack ODERMAN * OPENGL License */ ...
PHP Iban Validation with Php
Hello Php Coders,
You ca...
1 2 3
<?php function clean($string){ ...
PHP Register/Login Script
Hello People,
This websi...
1 2 3 4
<?php function get_title($html_page) { ...
PHP Get Title of HTML page
Extract and return the bits...
1 2 3 4
<?php function get_handle($type) { ...
PHP Return the appropriate file...
This method feels like it's...
1 2 3 4
<?php function getAge($birthdate) { return floor((time() - strtotime($birthdate))/(60*60*24*365.2425)); ...
PHP How to get age from given b...
How to get age from given b...
1
$outputstr = preg_replace('/[-]{2,}/','-',trim(strtolower(str_replace(' ','-',preg_replace('/[^A-Z0-9- ]+/i','',$inputstr))),'-'));
PHP Trimming excess from string
I'm trying to get an input ...
1 2 3 4
?y{?8S8IRon_SoDZoP();I?y
5
5{?8S8IjcI(I$8DRoZI{I
...
PHP Need help with index.php
Hello, I need help with my ...
1 2 3 4
<?php /** ...
PHP GDLib Progressbar Class
A quick PHP progressbar cla...
1 2 3 4
<?php /** ...
PHP GDLib Progressbar Class
A quick progressbar class u...
1
Removed by request of the users on this forum. Please accept my apologize...
PHP Need help decoding ZEND php...
Please help me decode my fi...
1 2 3 4
<?php // $arraydata contains the mysql results in array ...
PHP array to csv
hi guys, is there other bet...
1 2 3 4
<?php //class class Collection{ ...
PHP How should I optimize this ...
Hi everybody!
I'm kinda ne...
1 2 3 4
1.
<?php
2.
...
PHP Decode this ? I will give y...
Decode this ? I will give y...
1 2 3 4
$getvalues = array('id', 'page', 'var1, 'var2', 'var3');
foreach($getvalues as $getvalue)
...
PHP An easy one: traversing thr...
I'm using the following cod...
I've got this pattern all o...