Jump to content

varibale problem


JamesThePanda

Recommended Posts

ok I have this function called

the_ID();

 

I want to set it as a variable

So i did the following

$id = the_id();

 

And to test it I wanted to echo $id

 

 

so this was the simple piece of code I wrote

<?php $id = the_ID();
                    echo $id;
	?>

 

But nothing is being echoed what am  doing wrong ?

 

Thanks

 

James

Link to comment
https://forums.phpfreaks.com/topic/188329-varibale-problem/
Share on other sites

If you can use echo the_ID(); and it works, then you can assign that to a variable and use that variable. If that variable then does not have the expected value in it, your code has done something to that variable between the point where it was assigned a value and where you are using it.

 

You will need to post your actual code if you want help with why it is not working.

Link to comment
https://forums.phpfreaks.com/topic/188329-varibale-problem/#findComment-994208
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.