- Upvotes Received
- 7
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Developer, and designer, in all areas of the web. I have over 6 years of web development experience with high proficiency in back-end web development.
- Interests
- HTML5 CSS3 JavaScript jQuery PHP MySql
- PC Specs
- Toshiba Satellite
13 Posted Topics
So I have this line of code: $results = mysql_query('SELECT * FROM members WHERE category1="Photographers" ORDER BY premium DESC, featured DESC, company ASC'); Everything works great, Premium members show up above featured. Featured above regular members, and they are all in alphabetical order. However I want to have featured members … | |
I am trying to submit a form using JavaScript however when I click my button the text in the form disapers but nothing is sent or posted to my php script. <?php require_once("../content/includes/validation.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <title>Contact | Buffalo Bridal Association</title> <meta charset="utf-8" /> <meta name="description" content="" … | |
Re: I think this is what you are looking for. @import url('/css/styles.css'); http://reference.sitepoint.com/css/at-import | |
![]() | Re: Yes for your purposes LONG TEXT would be a good choice. I am using LONG TEXT to store recipes in an application I am writing. Check out the documentation if you want to know spicifics. http://dev.mysql.com/doc/refman/5.6/en/blob.html ![]() |
Re: I am not fimiliar with magento but are you able to insert a meta tag in your site? <meta http-equiv="refresh" content="30"> More information about refreshing content with meta tags. http://webdesign.about.com/od/metataglibraries/a/aa080300a.htm ![]() | |
Re: I don't have any templates for you, but I do have some guidance. Just think about what you have been asked to do. The task, to write a job proposal. So what does that really mean? It means they want you to put in writing exactly what you are going … | |
I am using the [jQuery validation](http://docs.jquery.com/Plugins/Validation) plug in on a website I am creating. The validation works, and the messages are set, however when they get displayed on my webpage they have line breaks. I only display one message at a time so I dont know why a single message … | |
Re: The max size of your file should be determined by your bandwidth. If your pages are loading slowly, then you know you should decress your file size. If they are loading quickly then make no changes. | |
Re: With out really looking over the code to much I would say you should look into cookies. [In PHP](http://www.w3schools.com/php/php_cookies.asp) [In JavaScript](http://www.w3schools.com/js/js_cookies.asp) | |
Re: I am not sure, but I would try looking at the varables being passed to the loops. Check to see if they are declared before the loop is called with a echo statment. If not there is your problem. Sorry I couldn't be of more help. | |
Re: This is a popular feature that many websites are doing now a days. The feature is called a lightbox. There are many diffrent versions of lightboxes so google them and try a few out. Here are two I like to use. http://lokeshdhakar.com/projects/lightbox2/ http://fancybox.net/ | |
Re: In order to [upload a file](http://www.w3schools.com/php/php_file_upload.asp) I believe you will need some backend code. To display it in an iframe just link the file that is uploaded to your iframe src="" attribute. | |
Re: Check out the parse_url method. [php docs](http://ca.php.net/manual/en/function.parse-url.php) <?php $myurl = "http://www.mystore.website.com/index.php?fkdsjklfjdskldfd=id"; $myvar = parse_url($myurl); echo($myvar['host']); ?> Also if your problem is solved please mark the thread as solved, thank you. ![]() |
The End.