View Single Post
  #92  
Old 02-06-2011, 01:03 PM
nobackseat nobackseat is offline
Member
 
Join Date: Feb 2011
Posts: 13
Gender: Male
Credits: 1,145
nobackseat is on a distinguished road
Default

I realize this is an old post, but I wanted to touch on some of the techniques here, and hope that it will help any other developers.

PHP Code:
$article_content $article_content."<p>Select 
PHP has the capability built in to append a variable to itself, and it is much easier than reiterating the variable.

PHP Code:
$article_content .= "<p>Select 
Memory resource in this application is tremendous.

There are some simple things here that may seem insignificant, it can make a huge impact.

PHP Code:
$femaleid $_POST['female'];
$maleid $_POST['male'];
$breed $_POST['breed'];

$femaleid secure($femaleid);
$maleid secure($maleid);
$breed secure($breed); 
to


PHP Code:
$femaleid secure$_POST'female' ] );
$maleid    secure$_POST'male' ] );
$breed     secure$_POST'breed' ] ); 

PHP Code:
        $num mysql_num_rows($result);

        
// Loop Out code < this will loop so you select all the rows and not just one
        
$i 0;
        while (
$i $num){ 

to


PHP Code:
// Loop Out code < this will loop so you select all the rows and not just one
$i 0;
while ( 
$i mysql_num_rows$result ) ) {


This is of course, only if you are using it once, and don't need the $num variable anywhere else.

And lastly,

Quote:
$i++;
to
Quote:
++$i;
But that is just me being extremely picky.

The reason for the above is, it is pre-incrementing and it doesn't create a memory reference.

The only difference between the two is, the last one doesn't increment until the end of the string, so in some cases it is not acceptable.

But anyways, yeah. This is not criticizing, I am just offering some tips.

NBS

Last edited by nobackseat; 02-06-2011 at 01:06 PM.
Reply With Quote