-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
31 lines (31 loc) · 743 Bytes
/
Copy pathtest.php
File metadata and controls
31 lines (31 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<h4>Try it yourself</h4>
<form method=post action=oscxmlapi.php>
<textarea rows=20 cols=90 name=xmlDoc>
<xml>
<login>
<username>username</username>
<password>password</password>
</login>
<update>
<products>
<product>
<products_id>1</products_id>
<products_quantity>10</products_quantity>
<products_status>1</products_status>
</product>
<product>
<products_id>2</products_id>
<products_quantity>53</products_quantity>
<products_status>2</products_status>
</product>
<product>
<products_id>3</products_id>
<products_quantity>0</products_quantity>
<products_status>0</products_status>
</product>
</products>
</update>
</xml>
</textarea>
<input type=submit value="Request">
</form>