Find Jobs
Hire Freelancers

Copy and paste HTML to MySQL

$30-250 USD

Abgeschlossen
Veröffentlicht vor etwa 15 Jahren

$30-250 USD

Bezahlt bei Lieferung
Overview An existing client would like to rebuild an on-line catalog for their mirrors. Essentially, the new design is finished, but data entry is needed. What is needed is information to be taken from an online catalog and placed into a MySQL Table. The source of the online catalog is: [login to view URL], and the sub directories linked from that page. On this page, you will see several links to other pages that have the products. If you click on each of the main section (Frameless all, Lacquer all, wood all, etc..) you will see a listing of products in each section. What I need is the information from those screens moved into the table below. CREATE TABLE `items` ( `id` int(12) NOT NULL auto_increment, `name` varchar(60) NOT NULL, `description` text NOT NULL, `item_id` int(12) NOT NULL, `image1` varchar(40) NOT NULL, `image2` varchar(40) NOT NULL, `image3` varchar(40) NOT NULL, `id_1` int(6) NOT NULL, `size_1` varchar(250) NOT NULL, `price_1` decimal(10,2) NOT NULL, `id_2` int(6) NOT NULL, `size_2` varchar(250) NOT NULL, `price_2` decimal(10,2) NOT NULL, `id_3` int(6) NOT NULL, `size_3` varchar(250) NOT NULL, `price_3` decimal(10,2) NOT NULL, `id_4` int(6) NOT NULL, `size_4` varchar(250) NOT NULL, `price_4` decimal(10,2) NOT NULL, `id_5` int(6) NOT NULL, `size_5` varchar(250) NOT NULL, `price_5` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 AUTO_INCREMENT=40 ; There are two types of item listings on each of the pages: item listings that have one size only, and item listings with multiple sizes. Below is the information that is needed and examples from single and multiple listings. The only information that you need to put in is: Name -> a three digit number from the HTML page. The number is either listed first, in the case of single size entries, or the first 3 digit number in the size listing , Description -> The main description of the item without prices and without the item number, and price Item_id -> a integer from the below table, depending on the section you are getting the information from. If the item is from the Frameless section, the integer would be 3. 2, 'Metal', '' 3, 'Frameless', '' 4, 'Gold', '' 5, 'Laquered', '' 6, 'Wood', '' 11, 'Chevel', '' The next information needed is id_#, price_# and size_# Single size listings only have information in id_1, size_1 and price_1. 2-5 are null. Multiple listings have information in _1 through the number of listings (to a max of _5). The value of id_1 is the same as the id above. Size_1 is equal to addslashes value found by the description Price_1 is found at the end of each line listing. Single size entries are done at that point, multiple line entries get additional information in the _2 line. This would be continued for items with three listings or more. For more clarification, here a HTML form that they use to input the items: Here is an example to the information in the frameless section: I have provided a MySQL example of the first couple of rows: INSERT INTO `items` (`id`, `name`, `description`, `item_id`, `image1`, `image2`, `image3`, `id_1`, `size_1`, `price_1`, `id_2`, `size_2`, `price_2`, `id_3`, `size_3`, `price_3`, `id_4`, `size_4`, `price_4`, `id_5`, `size_5`, `price_5`) VALUES (34, '316', 'Hardboard backing and hooks allow for mounting in a vertical or horizontal orientation. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 316, '24\\" wide, 34\\" high and 3/8\\" deep', 189.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00), (33, '303', 'Oval Frameless mirror features a 1\\" beveled edge. Hardboard backing and hooks allow for mounting in a vertical or horizontal orientation. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 303, '22\\" wide, 28\\" high and 3/8\\" deep', 149.00, 304, '20\\" wide, 27\\" high and 3/8\\" deep', 149.00, 305, '23 1/2\\" wide, 33\\" high and 3/8\\" deep', 169.00, 306, '28\\" wide, 40\\" high and 3/8\\" deep', 209.00, 307, '24\\" wide, 36\\" high and 3/8\\" deep', 169.00), (35, '309', 'Hardboard backing and hooks allow for mounting in a vertical or horizontal orientation. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 309, '23 1/2\\" wide, 30 1/2\\" high and 3/8\\" deep with a 1\\" beveled edge', 229.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00), (36, '318', 'Hardboard backing and hooks allow for mounting in a vertical or horizontal orientation. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 318, '24\\" wide, 30\\" high and 3/8\\" deep with a 1\\" beveled edge.', 209.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00), (37, '308', 'American made for amazing quality. Free shipping in the continental United States', 3, '[login to view URL]', '', '', 308, '28\\" wide, 28\\" high and 3/8\\" deep with a 1\\" beveled edge', 169.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00), (38, '327', 'Tri-View wall mirror features hinged side mirrors with 1\\" beveled edges. The overall measurements of this mirror are 38 1/2\\" wide, 30\\" high and 3/8\\" deep. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 327, '38 1/2\\" wide, 30\\" high and 3/8\\" deep', 259.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00), (39, '321', 'Octagon Frameless Mirror features a mirror on mirror with 1\\" beveled edges. Hardboard backing and hooks allow for mounting in a vertical or horizontal orientation. American made for amazing quality. Free shipping in the continental United States.', 3, '[login to view URL]', '', '', 321, '20\\" wide, 28\\" high and 1/2\\" deep', 179.00, 324, '24\\" wide, 32\\" high and 1/2\\" deep', 209.00, 0, '', 0.00, 0, '', 0.00, 0, '', 0.00); n this page, you will see several links to other pages that have the products. If you click on each of the main section (Frameless all, Lacquer all, wood all, etc..) you will see a listing of products in each section. What I need is the information from those screens moved into the table below. Required Deliverables 1). MySQL Table with the information detailed above.
Projekt-ID: 415113

Über das Projekt

13 Vorschläge
Remote Projekt
Aktiv vor 15 Jahren

Möchten Sie etwas Geld verdienen?

Vorteile einer Ausschreibung auf Freelancer

Legen Sie Ihr Budget und Ihren Zeitrahmen fest
Für Ihre Arbeit bezahlt werden
Skizzieren Sie Ihren Vorschlag
Sie können sich kostenlos anmelden und auf Aufträge bieten
Vergeben an:
Avatar des Nutzers
Please see PM. Thanks
$30 USD in 2 Tagen
4,5 (111 Bewertungen)
6,8
6,8
13 Freelancer bieten im Durchschnitt $152 USD für diesen Auftrag
Avatar des Nutzers
Professional designer/developer here. Done many websites. Ready to start work. Please check PM for work samples and also check out my reviews.
$200 USD in 4 Tagen
5,0 (255 Bewertungen)
7,3
7,3
Avatar des Nutzers
Please check my PM
$200 USD in 3 Tagen
4,9 (176 Bewertungen)
6,9
6,9
Avatar des Nutzers
we can do it
$120 USD in 4 Tagen
4,8 (39 Bewertungen)
5,9
5,9
Avatar des Nutzers
Hi, we ready to start. thanks
$158 USD in 4 Tagen
4,9 (23 Bewertungen)
5,8
5,8
Avatar des Nutzers
Dear Concern, I am full of confident to provide you prominent service having high professional work unite as to accomplish your each and every single requisite. I hope you will consider my bid as a serious bidder who always like to provide satisfactory service in time. Looking for your kind positive reply to have this project. Thanks
$200 USD in 7 Tagen
4,9 (46 Bewertungen)
5,2
5,2
Avatar des Nutzers
Please check PM. Thanks
$190 USD in 5 Tagen
5,0 (25 Bewertungen)
4,8
4,8
Avatar des Nutzers
I saw your other post with the same info, I know everything you need. Will be ready in 7 days or less. Thanks
$175 USD in 7 Tagen
5,0 (6 Bewertungen)
3,5
3,5
Avatar des Nutzers
Dear Sir, Please let me do it. Professional but cheaper. Thanks.
$30 USD in 2 Tagen
5,0 (1 Bewertung)
1,0
1,0
Avatar des Nutzers
pls check pm
$100 USD in 7 Tagen
0,0 (0 Bewertungen)
3,1
3,1
Avatar des Nutzers
Hi, my honor to work on this project. Can you please check pmb for more details.
$170 USD in 3 Tagen
0,0 (0 Bewertungen)
3,4
3,4

Über den Kunden

Flagge von UNITED STATES
Macungie, United States
5,0
1
Mitglied seit Feb. 20, 2009

Kundenüberprüfung

Danke! Wir haben Ihnen per E-Mail einen Link geschickt, über den Sie Ihr kostenloses Guthaben anfordern können.
Beim Senden Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.
Registrierte Benutzer Veröffentlichte Jobs
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Vorschau wird geladen
Erlaubnis zur Geolokalisierung erteilt.
Ihre Anmeldesitzung ist abgelaufen und Sie wurden abgemeldet. Bitte melden Sie sich erneut an.