neelima Posted December 24, 2006 Share Posted December 24, 2006 Hai I resently started working using php mysql. <a href='delete_category.php?id=$data[0]' target=main>can anyone explain me the above syntax.Thanks.....Neelima N Link to comment https://forums.phpfreaks.com/topic/31763-need-help-on-the-error-i-am-getting-in-php/ Share on other sites More sharing options...
wildteen88 Posted December 24, 2006 Share Posted December 24, 2006 A little vague but it creates a dynamic hyperlink. Link to comment https://forums.phpfreaks.com/topic/31763-need-help-on-the-error-i-am-getting-in-php/#findComment-147297 Share on other sites More sharing options...
kamasheto Posted December 24, 2006 Share Posted December 24, 2006 Try this instead;<a href='delete_category.php?id={$data[0]}' target=main>if it still doesn't work, try <a href='delete_category.php?id={$data['id']}' target=main>assuming id is your column name. Link to comment https://forums.phpfreaks.com/topic/31763-need-help-on-the-error-i-am-getting-in-php/#findComment-147326 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.