Skip to content

Instantly share code, notes, and snippets.

@AubreyHewes
Last active January 24, 2017 09:27
Show Gist options
  • Save AubreyHewes/d3661553b8da7a3d222b to your computer and use it in GitHub Desktop.
Save AubreyHewes/d3661553b8da7a3d222b to your computer and use it in GitHub Desktop.
DEPRECATED topbloemen import order interface
<?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