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 Quote 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. Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.