CodeCanyon

Listen server

3 posts
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
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

44 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 3-4 years
  • Sold between 100 and 1 000 dollars
cuteprince says

I can help you with this, just shoot me an email through my profile.

409 posts
  • Exclusive Author
  • Has been a member for 2-3 years
  • India
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.

?>
by
by
by
by
by