Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #20.4K
Ranked #2K
~6K People Reached
About Me

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.
Favorite Tags

7 Posted Topics

Member Avatar for rasikow

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); …

Member Avatar for slmsakthi
0
157
Member Avatar for chandradyani

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 …

Member Avatar for BzzBee
0
2K
Member Avatar for yashonweb

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.

Member Avatar for peter_nichol
0
45
Member Avatar for ripper1510

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")); …

Member Avatar for ripper1510
0
208
Member Avatar for nickfday

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 …

Member Avatar for nickfday
0
2K
Member Avatar for nickfday

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.

Member Avatar for nickfday
0
2K
Member Avatar for 3265002918

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 …

Member Avatar for peter_nichol
0
78

The End.