Make API on my orderform

thijlklerkx

New member
Joined
Oct 25, 2005
Messages
2
Hello,
first im sorry but i speak not very nice english i hope you understeand my english.
Then i have an order script maked for my hostingcompany but i will that if you submit this form automatical an new user at my directadmin maked.
I have searched on this forum but its give me no results the I understeand.
Now is this my code on de last 'submit' step:

PHP:
<html>
<head>
<title>
Bestelformulier Ditix Hosting</title>
</head>
<body>
<?php
session_start();
$_SESSION['naam'] = $naam;
$_SESSION['adres'] = $adres;
$_SESSION['postcode'] = $postcode;
$_SESSION['woonplaats'] = $woonplaats;
$_SESSION['telefoon'] = $telefoon;
$_SESSION['mail'] = $mail;
echo "
U heeft als het goed is alle velden correct ingevuld.<br>
Voor de zekerheid hier nog een keer de door u ingevulde gegevens:
<br>Domein: [url]http://www.[/url] ".$_SESSION['domain']." <br>
Hostingpakket: ".$_SESSION['pakket']." <br>
Naam: ".$_SESSION['naam']." <br>
Adres: ".$_SESSION['adres']." <br>
Postcode: ".$_SESSION['postcode']." <br>
Woonplaats: ".$_SESSION['woonplaats']." <br>
Telefoon: ".$_SESSION['telefoon']." <br>
".$_SESSION['mail']." <br>
Zijn deze gegevens correct?<br>
Klik dan op onderstaande button om uw bestelling te bevestigen.<br>
U krijgt dan meteen een mail opgestuurd met alle informatie over betaling en uw webruimte account wordt direct aangemaakt.<br>
Ook hier krijgt u een mail over. ";
?>
<p>
<form method="post" action="bevestig.php"><input type="submit" value="BEVESTIG MIJN BESTELLING!">

</form>
</body>
</html>
Now: can a body me learn how i API can intergrate in this script?

Thank you very much!
 
What you're asking for is someone to write custom-code for you for free. If you're serious and you want this done drop me a line and we can discuss price but free is not an option for me in any event.
 
Back
Top