co.ador Posted January 12, 2010 Share Posted January 12, 2010 <?php 'example2.php?subject='.urlencode($row['id'])'&id='.intval($id);?> what is not being parsed correctly? It looks like <?php '&id='.intval($id)?> is not well structure. help please Link to comment https://forums.phpfreaks.com/topic/188164-i-have-a-parse-error-in-this-query-help/ Share on other sites More sharing options...
RaythMistwalker Posted January 12, 2010 Share Posted January 12, 2010 <?php 'example2.php?subject='.urlencode($row['id']).'&id='.intval($id);?> you missed the . to add on the bit after $row['id']. fixed above Link to comment https://forums.phpfreaks.com/topic/188164-i-have-a-parse-error-in-this-query-help/#findComment-993383 Share on other sites More sharing options...
co.ador Posted January 12, 2010 Author Share Posted January 12, 2010 thank you very much it worked Link to comment https://forums.phpfreaks.com/topic/188164-i-have-a-parse-error-in-this-query-help/#findComment-993390 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.