kevy Posted July 13, 2008 Share Posted July 13, 2008 Hi, Somethings wrong with this line of code.. any idea what? I'm directing the variable "recordID" to the "deletethree.php" page using the "ItemNum" column in the field.. <a href="deletethree.php?recordID=<?php echo $row_ recordset1 ['ItemNum']; ?>">Delete</a> Link to comment https://forums.phpfreaks.com/topic/114493-solved-unexpected-t_string/ Share on other sites More sharing options...
JasonLewis Posted July 13, 2008 Share Posted July 13, 2008 <a href="deletethree.php?recordID=<?php echo $row_recordset1['ItemNum']; ?>">Delete</a> Why did you have a space between the _ and the recordset1? Link to comment https://forums.phpfreaks.com/topic/114493-solved-unexpected-t_string/#findComment-588745 Share on other sites More sharing options...
mmarif4u Posted July 13, 2008 Share Posted July 13, 2008 try this: <a href="deletethree.php?recordID=<?php echo $row_recordset1['ItemNum']; ?>">Delete</a> by the way you get any error. Link to comment https://forums.phpfreaks.com/topic/114493-solved-unexpected-t_string/#findComment-588749 Share on other sites More sharing options...
kevy Posted July 13, 2008 Author Share Posted July 13, 2008 thank you lol can't believe i didn't see that Link to comment https://forums.phpfreaks.com/topic/114493-solved-unexpected-t_string/#findComment-588765 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.