PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
But this outputs Script1.php?argc1=argv1&argc2=$ID when I want it to output Script1.php?argc1=argv1&argc2=5
Hows that possible ? Any function like parsePHP ?
Thanks
you'll need eval... a better solution would be to change that string to variable inside the string to something else.. like {ID}.. then you can str_replace it with your value.
I quite often store classes in the database and you just run them through eval() once youve grabbed the code and then you can use them. Find its good for auto-update of the users software as you dont have any trouble with file permissions on different systems.