Last active
January 24, 2017 09:27
-
-
Save AubreyHewes/d3661553b8da7a3d222b to your computer and use it in GitHub Desktop.
DEPRECATED topbloemen import order interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// DEPRECATED: interface no longer exists: use https://webservice.topbloemen.nl/soap/order/?wsdl | |
// | |
// redirect to new location at topbloemen using the given parameters to import a new topbloemen order | |
header('Location: http://bloemist.topbloemen-ws.nl/imporder.php?' . http_build_query([ | |
'usr' => 'X', // username | |
'psw' => 'X', // password | |
'prdnam' => 'X', // some name | |
'prcinc' => 'X', // price inc | |
'prcexc' => 'X', // price ex | |
'prdoms' => 'X', // product description(s) (comma delimited) | |
'prdopm' => 'X', // product/sender comment | |
'crdtxt' => 'X', // card text | |
'snddat' => 'X', // send date | |
'sndcom' => 'X', // recipient company name | |
'sndper' => 'X', // recipient person name | |
'sndadr' => 'X', // recipient address street | |
'sndnum' => 'X', // recipient address streetnumber | |
'sndpst' => 'X', // recipient address postcode | |
'sndcit' => 'X', // recipient address city | |
'sndtel' => 'X', // recipient phonenumber | |
'ordref' => 'X', // order reference number | |
'image' => 'X', // optional product image | |
])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment