Guest User

Untitled

a guest
May 29th, 2018
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $label = "labelPath/label.xml";
  2. $userName = "";
  3. $password = 1234;
  4. $printer = "192.168.178.88";
  5. // Build connection
  6. $ftp_conn = ftp_connect($printer) or die("Could not connect to the printer");
  7. $login = ftp_login($ftp_conn, $userName, $password);
  8.  
  9. // upload file and drive the printer to print label
  10. if (!(ftp_put($ftp_conn, "label.xml", $label, FTP_ASCII))) {
  11. echo "Error occurred when uploading $label.";
  12. }
  13.  
  14. ftp_close($ftp_conn);
Add Comment
Please, Sign In to add comment