liamloveslearning Posted June 2, 2008 Share Posted June 2, 2008 hey everyopne, when i post my msg id to my url i get this http://my website/mail_view_savedmsg.php?messages_saved_id=10%22 where the %22 shouldnt be there and isnt allowing my page to show, my code looks fine and ive checked it over and over, can anybody help? <a href=mail_view_savedmsg.php?messages_saved_id=<?php echo $row_mail_saved['messages_saved_id']; ?>" class="message_rows_subject"><?php echo KT_FormatForList($row_mail_saved['messages_saved_subject'], 20); ?></a> Link to comment https://forums.phpfreaks.com/topic/108421-solved-url-postget/ Share on other sites More sharing options...
rhodesa Posted June 2, 2008 Share Posted June 2, 2008 missing quote after href= <a href="mail_view_savedmsg.php?messages_saved_id=<?php echo $row_mail_saved['messages_saved_id']; ?>" class="message_rows_subject"><?php echo KT_FormatForList($row_mail_saved['messages_saved_subject'], 20); ?></a> Link to comment https://forums.phpfreaks.com/topic/108421-solved-url-postget/#findComment-555815 Share on other sites More sharing options...
liamloveslearning Posted June 2, 2008 Author Share Posted June 2, 2008 brilliant! cant believe i missed it Link to comment https://forums.phpfreaks.com/topic/108421-solved-url-postget/#findComment-555825 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.