Does certain tags we write in PHP affects the performance of the live server???

Posted by Sachindra on Stack Overflow See other posts from Stack Overflow or by Sachindra
Published on 2010-05-11T06:10:53Z Indexed on 2010/05/11 6:14 UTC
Read the original article Hit count: 115

Filed under:

I have written some tags in PHP as

<a href="<?php bloginfo('url'); ?>/?cat=<?php $cate_id ?>"><?php echo $resid->post_content ?></a>

or even this one

echo "<li><a href = '?cat=$cate_id'>".$resid->post_content."</a></li>";?>

Does this in any case affect the performance on the live server. I am no getting the image to appear on the live server after upload but on my local system(on my side) , things are fine..

© Stack Overflow or respective owner

Related posts about php