View Single Post
05-10-2008, 12:49 PM
#7
ezia is offline ezia
Status: Sin Binner
Join date: May 2008
Location:
Expertise:
Software:
 
Posts: 247
iTrader: 5 / 78%
 

ezia is an unknown quantity at this point

  Old

Well, without seeing the PHP code we can't really advise you that much.

But, check whether your PHP code has comments, and is properly laid out.

E.G.

Harder to read
Code:
<?php if($blah=="blah"){echo"bleh";}?>
Easier to read
Code:
<?php
// The IF function for blah

if($blah=="blah")
 {
  echo "bleh";
 }

?>