Would someone be kind enough to point me to a simple guide on using runtime arguments in php?
IE: http://www.website.com/page.php?id=$number
Much thanks. 🙂
Here is Contents of php manual. http://php.net/manual/en/index.php
This is something about such stuff: http://php.net/manual/en/reserved.variables.php#reserved.variables.get http://php.net/reserved.variables
Maybe you will find what chapter to read
say you have a page 'index.php' and you call this page with: http://www.website.com/index.php?name=john
This is index.php
<?php $instring = $_GET['name']; echo $instring; ?>
Resulting output from index.php will be: john
It is $_GET we use for import those variables submitted in URL
Thank you very much, halojoy. I'm very grateful. 🙂