shage Posted June 19, 2007 Share Posted June 19, 2007 How would i go about having the return value of <?=$_REQUEST['nats']?$_REQUEST['nats']:'MDowOjE'?> work in the post, it wont parse it in the post but it will parse it in the template itself thank you Link to comment https://forums.phpfreaks.com/topic/56203-wordpress/ Share on other sites More sharing options...
shage Posted June 19, 2007 Author Share Posted June 19, 2007 bump for good times Link to comment https://forums.phpfreaks.com/topic/56203-wordpress/#findComment-277621 Share on other sites More sharing options...
per1os Posted June 19, 2007 Share Posted June 19, 2007 First up, the <?= tags are being depreciated it is better to use this: <?php echo $_REQUEST['nats']?$_REQUEST['nats']:'MDowOjE'; ?> Next, explain what you need clearer, what do you mean work in the "post", $_REQUEST essentially accesses POST and GET data....Do you mean like a blog post or what? What steps have you done to debug and test that there is values being set/get/posted from the server to populate "nat" ? Link to comment https://forums.phpfreaks.com/topic/56203-wordpress/#findComment-277628 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.