Hello,
I am sorry to bother you all again. I am creating a script, which is used for storing the parcels sent. Now, I have done everything. Just need to add one feature.
I have a MYSQL field named TRACKING which will hold tracking information or reciept numbers of the items sent. Since, these numbers will be provided after I will actually ship the items, I will have to update these fields at a later stage, after adding the
parcel information.
What I store at the moment in MYSQL:
Name:
Address:
Weight:
Price:
Items:
Date:
ID: Auto created using AUTO_INCREMENT
TRACKING: This remains empty
Once I add the above information, it generates a shipping label after adding above data into MYSQL, which I paste on parcel and send it.
Now, I have a tracking Code after sending the parcel. Which I want to add along with the above information.
So what I need is, that a page, where it displays
| ID | NAME | ITEMS | TRACKING |
| XX | xxXX | XXXXX | E M P T Y|
Here I can enter the Tracking information and upate.
I know its a lot of work, but can someone just give me a syntax to do that? I know no PHP so I cant do it on my own.
Any help would be appreaciated.
To add, it will be run locally and not on web so there are no security issues involved.