Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 53
Search took 0.18 seconds.
Search: Posts Made By: noisyscanner
Forum: Ruby & Ruby On Rails 08-16-2011, 03:12 PM
Replies: 0
Views: 1,891
Posted By noisyscanner
Merge three models for latest content on homepage?

Hey, guys!
I have three models for a blog here that I want to merge to find the latest content for the homepage.

Post
Picture
Video

To make this even more complicated would like to...
Forum: PHP 08-05-2011, 08:20 AM
Replies: 4
Views: 405
Posted By noisyscanner
I'm trusting you know HTML? Basically, to learn...

I'm trusting you know HTML?
Basically, to learn PHP and create a site you first have to know the basics like the syntax, variables, etc...
Once you know that, you can get on to the building of the...
Forum: MySQL 08-04-2011, 10:26 PM
Replies: 5
Views: 1,027
Posted By noisyscanner
Yes, I noticed that, too. But it wouldn't cause a...

Yes, I noticed that, too. But it wouldn't cause a syntax error. Still, it's worth taking note of.
Forum: MySQL 08-04-2011, 10:18 PM
Replies: 5
Views: 1,027
Posted By noisyscanner
Try this: $update = 'UPDATE deals SET title =...

Try this:
$update = 'UPDATE deals SET title = "' . $title . '" WHERE source = "' . $source . '" AND title = "' . $title . '" AND cityid = "' . $cityid . '"';
You forgot the dot after $cityid
Forum: Ruby & Ruby On Rails 10-31-2010, 10:10 AM
Replies: 0
Views: 2,839
Posted By noisyscanner
Post Ordering a HABTM relationship?

Hey there I have an app where:

A user has and belongs to many videos
A video has and belongs to many users. And belongs to a group.
A group has many videos

On the 'Show' action of the...
Forum: HTML & CSS 10-09-2010, 10:39 AM
Replies: 6
Views: 1,545
Posted By noisyscanner
Fixed it now! Thanks for your help everyone! ...

Fixed it now! Thanks for your help everyone!
What I did was tiled horizontally a 65x1 PNG image across the top and then I fixed all the validation errors!
Forum: HTML & CSS 10-09-2010, 09:37 AM
Replies: 6
Views: 1,545
Posted By noisyscanner
Yeah I removed the top bar because it was causing...

Yeah I removed the top bar because it was causing most of the chaos. (The light green one in the background. #menubh ...)



So then what is the best was to code it meanwhile having the lighter...
Forum: HTML & CSS 10-08-2010, 03:57 PM
Replies: 6
Views: 1,545
Posted By noisyscanner
Hey thanks for your post. The height on the...

Hey thanks for your post.
The height on the #menu was something I added this morning because I thought it might work. Just taken it out now and, well, it's exactly the same. I see where you're...
Forum: HTML & CSS 10-08-2010, 08:26 AM
Replies: 6
Views: 1,545
Posted By noisyscanner
Website displays terribly in IE7 but fine in IE8?

Hey there everyone!
I have a website located at http://www.marbleracer.tk
My problem is that in IE7 the website displays really bad but in IE8, Firefox, Google Chrome, Opera and Safari it displays...
Forum: HTML & CSS 07-18-2010, 05:13 PM
Replies: 3
Views: 664
Posted By noisyscanner
Thabks so much!!

Thabks so much!!
Forum: HTML & CSS 07-17-2010, 01:04 PM
Replies: 3
Views: 664
Posted By noisyscanner
Question Why doesn't my mouseover image change work?

Hello,
In the following code, it is supposed to be a Star Rating script. When you move your mouse over one of the stars it should change the appropriate stars to yellow and when it is clicked change...
Forum: HTML & CSS 03-20-2010, 09:22 AM
Replies: 3
Views: 1,020
Posted By noisyscanner
Ok so I used a 100% height layout. Works great...

Ok so I used a 100% height layout. Works great now thanks!!
Forum: HTML & CSS 03-20-2010, 09:17 AM
Replies: 3
Views: 1,020
Posted By noisyscanner
Yeah I do mean the actual container div.. It...

Yeah I do mean the actual container div..
It works how I want if I don't do: <link href="http://includes.universalgames.biz/styles/styles.css" rel="stylesheet" type="text/css" />
<link...
Forum: HTML & CSS 03-19-2010, 09:26 PM
Replies: 3
Views: 1,020
Posted By noisyscanner
Why won't my background tile??

Hello,
I have PHP generate a profile page but the code is all too long winded to post here so I'll put the HTML. What happens is instead of the background in the container tiling to be the length of...
Forum: PHP 03-16-2010, 07:32 AM
Replies: 7
Views: 794
Posted By noisyscanner
Does sending to localhost work?

Does sending to localhost work?
Forum: PHP 03-15-2010, 08:28 PM
Replies: 11
Views: 923
Posted By noisyscanner
That is correct. It uses a while loop: ...

That is correct. It uses a while loop:

$arrFriends = unserialize($row['friends']);
$strFriends=implode("','",$arrFriends);
$strFriends="'$strFriends'";
$friends_query = mysql_query("select user...
Forum: PHP 03-15-2010, 02:23 PM
Replies: 11
Views: 923
Posted By noisyscanner
Tested it.. But it only retrieved this: Array (...

Tested it.. But it only retrieved this:
Array ( [0] => someuser [id] => 16 [user] => someuser )
I need to retrieve all his/her friends from db and then show thier profile pictures shown in the...
Forum: PHP 03-15-2010, 01:24 PM
Replies: 11
Views: 923
Posted By noisyscanner
My website is down in certain areas on certain...

My website is down in certain areas on certain ISPs, I'm waiting for DNS stuff to propogate.
I was at my nans this morning now I'm at my mums and it doesn't work here.
I will post when I go home...
Forum: PHP 03-15-2010, 10:13 AM
Replies: 11
Views: 923
Posted By noisyscanner
By the way echoing the implode thing you gave me...

By the way echoing the implode thing you gave me outputs similar to this.
somebody,somebodyelse,username21,dave101,etc...
Forum: PHP 03-15-2010, 09:58 AM
Replies: 11
Views: 923
Posted By noisyscanner
Any ideas on how I'd go about doing that?

Any ideas on how I'd go about doing that?
Forum: PHP 03-15-2010, 09:36 AM
Replies: 11
Views: 923
Posted By noisyscanner
I now get the following error (I added or...

I now get the following error (I added or die(mysql_error()); on the end)

Unknown column 'hiddenusername' in 'where clause'

Where hiddenusername is one of my friends
Forum: PHP 03-14-2010, 09:27 PM
Replies: 11
Views: 923
Posted By noisyscanner
Selecting data from mysql using data from an array

Hey peoples.
I have an array of friends: EX. array([0] => "FRIEND_0", [1] => "FRIEND_1") etc
Can I select 6 friends in this array from mysql and print thier pictures to the screen?

Thanks,...
Forum: PHP 03-14-2010, 08:40 PM
Replies: 6
Views: 2,015
Posted By noisyscanner
Thanks!!!!

Thanks!!!!
Forum: PHP 03-12-2010, 09:54 PM
Replies: 6
Views: 2,015
Posted By noisyscanner
Great so how would i do that?

Great so how would i do that?
Forum: PHP 03-12-2010, 12:41 PM
Replies: 6
Views: 2,015
Posted By noisyscanner
Question PHP's serialize function not working!!

Hello all!
I have a script that SHOULD add friends to a users account by:
Checking the db to see if he has any friends.
If he doesn't, initialize an array with the friend he wants to add:...
Showing results 1 to 25 of 53

 
Forum Jump

All times are GMT +1. The time now is 04:45 AM.