T O P I C R E V I E W |
rmmarsh |
Posted - 26 Jan 2008 : 16:14:28 I'm new to this, so please bear with me.
When the PHP code is generated on the server and sent to the client, is the resulting PHP code visible?
I want to create a registration code using the PayPal IPN, but I don't want the algorithm to be visible, nor do I want any of the PHP code (or it's derivative) to be visible. |
3 L A T E S T R E P L I E S (Newest First) |
petran |
Posted - 27 Jan 2008 : 12:37:37 Correct, the PHP code will be parsed by the server and only the generated HTML code is send to the client. Ofcourse this HTML code is visible in the source, but not the PHP you used. Just try it and look at the sourcecode. |
rmmarsh |
Posted - 26 Jan 2008 : 23:13:38 Hmmm... so if I have some PHP code that generates a GUID, a user won't be able to see the code? |
petran |
Posted - 26 Jan 2008 : 19:30:35 your PHP code is not visible, only the by PHP generated HTML code is |