- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I am a freelance website designer and developer from Swindon.
Visit my business website for a portfolio of work I've done. www.pjncomputersolutions.com
- Interests
- Website design and development, SEO, PHP, MySQL.
7 Posted Topics
Re: What you want to do is: [code=php]$query = "SELECT id,nos FROM Table1"; $result = mysql_query($query); while ($row = mysql_fetch_array($result)) { echo $row['id']; $values = split(",",$row['nos']); $first_entry = true; foreach ($values as $one_nos) { $query2 = "SELECT values FROM Table2 WHERE id = '" . $one_nos . "'"; $result2 = mysql_query($query2); … | |
Re: When uploading the file I think you mean to the remote server, and you can just use an FTP client for this such as Filezilla, Dreamweaver, FTP Pro, LeechFTP, etc... When linking to the pdf document make sure you use $_SERVER['DOCUMENT_ROOT'] And then the file path and filename to the … | |
Re: When creating this shadow image you will want the semi transparency and so I'd recommend making a png file as then you have the ability to change the background colour of your website and the shadow will still remain. | |
Re: There's a PHP date variable which determines whether daylight saving is currently in place. date("I") returns 1 if daylight saving time, else it returns 0. In place of your $nextWeek try using: [code=php]if (date("I") == 1) { $nextWeek = date(strtotime("+6 days -1 hour")); } else { $nextWeek = date(strtotime("+7 days")); … | |
Re: In JavaScript it will stop running the scripts when it finds an error. The error here is that you're creating the same function multiple times, that's why it's working the first time, but then not working after that. You want to include a file at the top of your page … | |
Re: I have written a blog on this. It's called "[URL="http://www.peternichol.com/blog/entry/creating-a-dynamic-sitemap-or-other-xml-file/"]Creating a dynamic sitemap or other xml file[/URL]" I think it answers everything you're trying to do. | |
Re: There's 2 things I'd try here - firstly check that there's no margin above the navigation links. p { margin:0px; } or if you're using lists then ul, li { margin:0px; } If this still doesn't work then you can use the "position:relative" and then do "top:-10px;" - now this … |
The End.