-
Show/hide multiple select menus
Cheers Blofeld, I need to change the content on the fly ideally so looking at jquery as know nothing about Ajax really. Do you know of any good jquery tutorials for this type of thing?
-
Show/hide multiple select menus
Hi All, I'm looking to create a questionairre which will start with one select menu on the page, when the user chooses an option the next dropdown will appear dependant on the choice. There could be up to 10 questions in total, I'm just looking to for someone to point me in the right direction in what methods to use or to a tutorial that could help. Thanks in advance.
-
Show/hide multiple select menus
Hi All, I'm looking to create a questionairre which will start with one select menu on the page, when the user chooses an option the next dropdown will appear dependant on the choice. There could be up to 10 questions in total, I'm just looking to for someone to point me in the right direction in what methods to use or to a tutorial that could help. Thanks in advance.
-
Ecommerce virgin
Hi all, I'm currently designing a website that the customer has now decided they may want to sell products on. I only have a basic knowledge of php and so I 'm looking for something where I could use a template maybe to adapt to my design, also looking to have something whereby my client can add/delete items or change prices without having to come back to me, are there any products out there that can do this? Sorry if this question has been asked before but I'm really busy and don't have the time to read loads of posts. thanks in advance.
-
Free backgrounds
Hi all I'm looking for some free to download background images similar to the attached design, can anybody out there recommend a good website.
-
MySQL error
Cheers KieranA and NeRo that's sorted it! Many Thanks.
-
MySQL error
Hi Aaroniza, I've tried that as well as replacing TINYINT with INT also and still get the same . Do you thin it could be to do with TINYTEXT if so what should I replace that with?
-
MySQL error
Hi all, I'm just learning MySQL and trying to create a few new tables for a database with this code: CREATE TABLE uploads( upload_id int( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT , file_name VARCHAR( 30 ) NOT NULL , file_size INT( 6 ) UNSIGNED NOT NULL , file_type VARCHAR( 30 ) NOT NULL , description VARCHAR( 100 ) DEFAULT NULL , date_entered TIMESTAMP, PRIMARY KEY ( upload_id ) , KEY ( file_name ) , KEY ( date_entered ) ) CREATE TABLE urls( url_id SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT , url VARCHAR( 60 ) NOT NULL , title VARCHAR( 60 ) NOT NULL , description TINYTEXT NOT NULL , PRIMARY KEY ( url_id ) ) CREATE TABLE url_categories( url_category_id TINYINT( 3 ) UNSIGNED NOT NULL AUTO_INCREMENT , category VARCHAR( 20 ) NOT NULL , PRIMARY KEY ( url_category_id ) ) CREATE TABLE url_associations( ua_id SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT , url_id SMALLINT( 4 ) UNSIGNED NOT NULL , url_category_id TINYINT( 3 ) UNSIGNED NOT NULL , date_submitted TIMESTAMP, approved CHAR( 1 ) DEFAULT 'N' NOT NULL , PRIMARY KEY ( ua_id ) ) However when I submit this I get the following error: MySQL said: Documentation #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE urls ( url_id SMALLINT(4) UNSIGNED NOT NULL AUTO_INCREMENT, url VA' at line 7 Can anybody see what I'm doing wrong?
-
Internet explorer problems
Hi Wickham cheers for that, yeah it was the navtint.png which didn't seem to be showing when I checked last night, having said that though my PC is quite old maybe that has something to do with it.
-
Internet explorer problems
Hi all, I'm currently working on a site: http://www.bazhodson.co.uk/gbsecurity/index.html I'm having a few problems in internet explorer7 and wondered if anyone can help me. 1. Horizontal navigation doesn't display inline they are staggered. 2. Transparent png files used for background images don't show, is there a way to get them to show? Any advice would be greatly appreciated.
-
Cost Calculator
Thanks for the tips Bocaj, i'll check out those links!
-
Cost Calculator
Cheers Jay, its not overly complicated just basically a few dimensions and any extra fittings. Can you recommend any good examples/tutorials?
-
Cost Calculator
Hi all I've been asked to put together a cost calculator for a Garage Conversion Company, in which the user can input things like the dimensions of their garage and how many power points they need etc and they then receive an automatic estimate. Just wondered what would be the best way to set this up, PHP? And also what people think I should charge.
-
PHP form validation
Cheers for that didn't realise it would be so simple.
-
PHP form validation
Hi guys I'm working on a simple php form and I want to have my form so that if the user doesn't fill in a required input the error message appears below the actual input area and not on a seperate page, is this possible with php alone?