Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 112
Search took 0.23 seconds.
Search: Posts Made By: Afro_Programmer
Forum: PHP 04-30-2011, 07:45 PM
Replies: 1
Views: 297
Posted By Afro_Programmer
wth...doesn't work

$result2 = use_db("SELECT * FROM news WHERE 'id' BETWEEN '$startpoint' AND '$endpoint'");


I need it to select all records between startpoint and endpoint. The query looks right, but it doesn't...
Forum: HTML & CSS 01-28-2011, 05:27 AM
Replies: 3
Views: 760
Posted By Afro_Programmer
Float drop (?) and other issues w/ elements

Look here: tutking.99k.org

If you resize the browser window, why are all the elements affected? :)

Notice how the menu elements all fall if the browser is resized. Also, notice how one float on...
Forum: Large Projects (new web application, complex features etc) 01-11-2011, 07:16 PM
Replies: 7
Views: 1,932
Posted By Afro_Programmer
Yeah but flagging doesn't do anything unless your...

Yeah but flagging doesn't do anything unless your post is against the TOS of craigslist right?
Forum: PHP 12-05-2010, 04:30 AM
Replies: 2
Views: 500
Posted By Afro_Programmer
$now = $req_user_info['username']; ...

$now = $req_user_info['username'];

//CONNECT...\\

$query = "SELECT `RATING_TOTAL` FROM ACTIVE WHERE USERNAME='$now'";
$result = mysql_query($query);

$temp = 0;
while (...
Forum: PHP 12-05-2010, 01:11 AM
Replies: 14
Views: 4,989
Posted By Afro_Programmer
Ok I read it wrong. I'll add onto what I...

Ok I read it wrong.

I'll add onto what I said earlier:


1. All articles stored in one table with a specific ID.
2. All comments stored in another table with the following fields: ID,...
Forum: PHP 12-05-2010, 12:16 AM
Replies: 14
Views: 4,989
Posted By Afro_Programmer
The main idea is that your messages will be...

The main idea is that your messages will be stored in one table and ALL comments (from every message O_o) will be stored in another table.

1. Get the main message ID.
2. Query your comments...
Forum: PHP 12-04-2010, 10:10 PM
Replies: 5
Views: 1,389
Posted By Afro_Programmer
One is a first edition and the other is the 3rd...

One is a first edition and the other is the 3rd edition. Basically a different book.

But on a sidenote....if you want a PHP book that goes over advanced PHP topics you should try:
...
Forum: JavaScript programming 12-03-2010, 04:42 AM
Replies: 37
Views: 4,061
Posted By Afro_Programmer
Nice algorithm you built there. ;o

Nice algorithm you built there. ;o
Forum: JavaScript programming 12-02-2010, 10:03 PM
Replies: 37
Views: 4,061
Posted By Afro_Programmer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta...
Forum: JavaScript programming 12-02-2010, 08:39 PM
Replies: 2
Views: 1,127
Posted By Afro_Programmer
Wierd snippet of code and markup, but it works...

Wierd snippet of code and markup, but it works correctly...atleast on my end. ;o

-edit-

well actually in google chrome it works right, but not in firefox/ie. Maybe you should just reconsider...
Forum: JavaScript programming 12-02-2010, 07:23 PM
Replies: 4
Views: 952
Posted By Afro_Programmer
<html> <head> </head> <body> Enter a...

<html>
<head>

</head>
<body>
Enter a Sentence <input type = "text" id = "theLetter" onblur = "show(this)">
<hr>
<div id = "myDiv">

</div>
Forum: JavaScript programming 12-01-2010, 05:35 PM
Replies: 1
Views: 2,078
Posted By Afro_Programmer
This works like you would want it...you only need...

This works like you would want it...you only need javascript.

<?php

function form_options()
{
echo '<option value= "hola">hola </option>';
echo '<option value= "como estas">como estas...
Forum: Graphics and Multimedia discussions 12-01-2010, 01:52 AM
Replies: 4
Views: 3,095
Posted By Afro_Programmer
Both are good books...especially the Wow! book...

Both are good books...especially the Wow! book which gives you a dvd so that you can work through all the examples (all of which are extremely detailed).

The other one is more of a "do this, do...
Forum: JavaScript programming 11-30-2010, 07:40 PM
Replies: 10
Views: 1,568
Posted By Afro_Programmer
<script type="text/javascript" src="list.js">...

<script type="text/javascript" src="list.js"> </script>
Forum: JavaScript programming 11-30-2010, 01:43 AM
Replies: 11
Views: 2,392
Posted By Afro_Programmer
change it from a string? :)

change it from a string? :)
Forum: JavaScript programming 11-30-2010, 01:26 AM
Replies: 11
Views: 2,392
Posted By Afro_Programmer
What the hell....check this JS code out: ...

What the hell....check this JS code out:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html...
Forum: JavaScript programming 11-29-2010, 11:16 PM
Replies: 11
Views: 2,392
Posted By Afro_Programmer
Ahh so simple DrDos. :) I guess I was...

Ahh so simple DrDos. :)

I guess I was trying too hard to apply what I had just learned about objects to a coding problem.

All the parts of JS still need time to settle in my head.

...
Forum: JavaScript programming 11-29-2010, 10:30 PM
Replies: 9
Views: 2,183
Posted By Afro_Programmer
Well for one, you are never clear on exactly what...

Well for one, you are never clear on exactly what it is that you want to accomplish so it's hard for anyone to really help you. We could write out some code snippets for you to give you some...
Forum: JavaScript programming 11-28-2010, 09:58 PM
Replies: 11
Views: 2,392
Posted By Afro_Programmer
Calling setTimeout in a loop

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta...
Forum: JavaScript programming 11-28-2010, 08:20 PM
Replies: 4
Views: 875
Posted By Afro_Programmer
<script type="text/javascript"> // script element...

<script type="text/javascript"> // script element to add the votes.js

function totalVotes(votes1){ // script element that will calculate the array
var total = 0;
for (var i = 0; i <...
Forum: JavaScript programming 11-28-2010, 08:15 PM
Replies: 4
Views: 875
Posted By Afro_Programmer
Call the function.... :thumbsup:

Call the function.... :thumbsup:
Forum: JavaScript programming 11-28-2010, 04:57 PM
Replies: 19
Views: 3,951
Posted By Afro_Programmer
lol...horrible tactic to get donations.

lol...horrible tactic to get donations.
Forum: PHP 11-25-2010, 02:00 AM
Replies: 5
Views: 1,133
Posted By Afro_Programmer
1,290,655,800 - 1,290,580,200 = 75,600 I...

1,290,655,800 - 1,290,580,200 = 75,600

I don't get why you're expecting a negative. From what I can see, the function is doing what it's being told. No error...

-edit-

Here is what you want...
Forum: JavaScript programming 11-24-2010, 01:49 AM
Replies: 37
Views: 4,061
Posted By Afro_Programmer
Do you have any specific graphics you want for it...

Do you have any specific graphics you want for it or does it matter? :)
Forum: JavaScript programming 11-24-2010, 01:25 AM
Replies: 26
Views: 1,336
Posted By Afro_Programmer
btw a good free host is zymic.com. :thumbsup:

btw a good free host is zymic.com. :thumbsup:
Showing results 1 to 25 of 112

 
Forum Jump

All times are GMT +1. The time now is 10:28 AM.