nackgr
says
I will receive link like
https://my_url/script?onum=123456789&balance=3.40
I want somehow store from each url specific values to a sql database or forward them to an email adresse
E.g. Table A Onum | Balance 123456 3.40
Thank you
cuteprince
says
I can help you with this, just shoot me an email through my profile.
Dhruv
says
<?php
$onum = $_GET['onum'];
$balance = $_GET['balance'];
OR
if(!empty($_GET['onum'])) {
$onum = $_GET['onum'];
}
else {
$onum = 'some_default_value';
}
// WRITE code to insert these values in the database.
?>
