Barter Zone
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsGeneralBarter Zone

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
AT&T devCentral & BlackBerry(r) Webcast Series: BlackBerry and GPS -Build Location Awareness into your BlackBerry Applications, July 10th-1:00PM EST. Register Today!
  #1  
Old September 10th, 2007, 12:47 PM
zerophp zerophp is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 2 zerophp User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 13 m 13 sec
Reputation Power: 0
I am a rusty PHP/MySQL programmer looking for projects, ill do for free

I am available to do PHP/MySQL

I'm looking to get back into coding, I learn when I was very young, it is all still in my head. I can learn anything again or very quickly

I would like to work on an online game, a petsite or the like

I'm 17

I also speak French, hehe so I can translate ur page and make a dynamic multilingual site ^^

Reply With Quote
  #2  
Old September 10th, 2007, 01:33 PM
shdt shdt is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 1 shdt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 m 17 sec
Reputation Power: 0
Can you solve this

I am trying to limit rows and columns in a table through while statement, Now when I use :

<?php

$pl_id = $row['place'];
$result1 = mysql_query ("SELECT * FROM places") or die (mysql_error());

$tdcount = 1;
$numtd = 5; // number of cells per row
echo "<table border=1>";
while ($row1 = mysql_fetch_array ($result1))
{ if ($tdcount == 1)
echo "<tr>";
echo "<td><a href=hHome_display.php?x=".$row1['id'] .">".$row1['place_name']."</a></td>"; // display as you like
if ($tdcount == $numtd)
{
echo "</tr>";
$tdcount = 1;
} else {
$tdcount++;
}
} // time to close up our table
if ($tdcount!= 1)
{
while ($tdcount <= $numtd) {
echo "<td>&nbsp;</td>";
$tdcount++; } echo "</tr>";
}
echo "</table>";
?>

It works fine, but if try to bring it into another while statement like :

<?php
$result = mysql_query("SELECT distinct place FROM hh_details") or die (mysql_error());
while ($row = mysql_fetch_array ($result))
{
$pl_id = $row['place'];
$result1 = mysql_query ("SELECT * FROM places WHERE id = '$pl_id'") or die (mysql_error());

$tdcount = 1;
$numtd = 5; // number of cells per row
echo "<table border=1>";
while ($row1 = mysql_fetch_array ($result1))
{ if ($tdcount == 1)
echo "<tr>";
echo "<td><a href=hHome_display.php?x=".$row1['id'] .">".$row1['place_name']."</a></td>"; // display as you like
if ($tdcount == $numtd)
{
echo "</tr>";
$tdcount = 1;
} else {
$tdcount++;
}
} // time to close up our table
if ($tdcount!= 1)
{
while ($tdcount <= $numtd) {
echo "<td>&nbsp;</td>";
$tdcount++; } echo "</tr>";
}
echo "</table>";
}
?>

It returns a tr with five td's, the first td displays data, while the others are blank and then another tr, the first td displays data and the others blank. Where am I going wrong? Please help!

Reply With Quote
  #3  
Old September 10th, 2007, 07:27 PM
lig's Avatar
lig lig is offline
"Forum Nazi"
Codewalkers Demi-God (4500 - 4999 posts)
 
Join Date: Apr 2007
Location: Jacksonville, Fl
Posts: 4,720 lig User rank is Private First Class (20 - 50 Reputation Level)lig User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 Days 20 m 53 sec
Reputation Power: 6
If you choose to use this persons skills - please do not place your entire problem on the forum (maybe PM it to them). I do not want new members to become confused on where they are supposed to ask questions (in the PHP Coding forums) for the entire community.

I will be watching this post to ensure no one gets lost.
__________________
life is a game.... Have fun
-----------------------------
http://www.phpwomen.org
strength in unity

PHPCommunity IRC
#phpc on freenode

Reply With Quote
  #4  
Old September 22nd, 2007, 09:14 PM
Pixeling Pixeling is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 2 Pixeling User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 4 sec
Reputation Power: 0
Quote:
Originally Posted by zerophp
I am available to do PHP/MySQL

I'm looking to get back into coding, I learn when I was very young, it is all still in my head. I can learn anything again or very quickly

I would like to work on an online game, a petsite or the like

I'm 17

I also speak French, hehe so I can translate ur page and make a dynamic multilingual site ^^


Hello, I need help with a new project I have in mind, send me a private message please!

Thank You!

Reply With Quote
  #5  
Old September 23rd, 2007, 03:28 AM
Jooshypnut Jooshypnut is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 8 Jooshypnut User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m 42 sec
Reputation Power: 0
Id love for you to help me, im 21 and starting my own petsite.. yeah sounds original right. Basically i started it so i could have a chance to learn php myself, but i have found other people want to be a part of it as well, so im kind of having a collective practice area if you get what i mean. Im the only "coder" and i have 3 other people doing art for me now.

Basically I would hope that you are interested in helping out so then I can learn stuff from you and then adapt it into my own work.

If your interested, PM me and i'll get back to you ASAP or if you have MSN messenger, add me "contact_pav (at) hotmail (dot) com"

Hope to hear from you.
Josh

Reply With Quote
  #6  
Old September 25th, 2007, 09:45 AM
ChancesSpot ChancesSpot is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 2 ChancesSpot User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 30 m 56 sec
Reputation Power: 0
Hi.

I have a nonprofit pet loss Web site that needs help with [finishing] the setup of our CPanel/PHPList?and CronJb. If you can help, please see my request, NonProfit Needs Help w/PHPList SetUp, for more details.

Thanks.

Reply With Quote
  #7  
Old September 25th, 2007, 02:33 PM
westmatrix99's Avatar
westmatrix99 westmatrix99 is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 288 westmatrix99 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 51 m 47 sec
Reputation Power: 2
Thumbs up

You can check out my PET site.
I developed it over two years ago and only released it this year.

Furkids
__________________
Cheers
West

Reply With Quote
  #8  
Old October 1st, 2007, 10:46 PM
Liz Liz is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 10 Liz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 27 m
Reputation Power: 0
I would LOVE it if you wouldn't mind helping me with a script. Here is the information from a post I made:


I am looking for someone to create a PHP script for me that will allow me to randomize "names", while also having a weighted system to it.

Example:

- Every 1 integer means that the name moves up one position after being randomized

Names and numbers are entered:
Bob = 4
Bill = 5
Sam = 7
(other names entered)

Randomizer gives the following results:
1. Sam
8. Bob
20. Bill

But then results are changed according to the numbers entered.
1. Sam
4. Bob
15. Bill

If anyone has a little extra time to take on a project and would do this for me, I would really, really appreciate it! I have no idea how to even begin on something like this.

Reply With Quote
  #9  
Old October 1st, 2007, 11:26 PM
lig's Avatar
lig lig is offline
"Forum Nazi"
Codewalkers Demi-God (4500 - 4999 posts)
 
Join Date: Apr 2007
Location: Jacksonville, Fl
Posts: 4,720 lig User rank is Private First Class (20 - 50 Reputation Level)lig User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 Days 20 m 53 sec
Reputation Power: 6
please contact this user by pm with your request. double posting on this thread after you have already posted yourself is greatly discouraged.

Reply With Quote
  #10  
Old October 1st, 2007, 11:37 PM
Liz Liz is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Sep 2007
Posts: 10 Liz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 27 m
Reputation Power: 0
Ok, sorry about that!

Reply With Quote
  #11  
Old October 9th, 2007, 09:53 PM
TopTwins TopTwins is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Location: New Zealand
Posts: 10 TopTwins User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 16 m 29 sec
Reputation Power: 0
Exclamation Laviet

If you haven't chosen a site all ready, please consider Laviet.

We are in desperate need of a PHP/SQL programmer!

Reply With Quote
  #12  
Old October 20th, 2007, 06:43 AM
xerrin xerrin is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Posts: 4 xerrin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 17 sec
Reputation Power: 0
Talking Life saver !

I am in desperate need of a person like you! you would save me a lot of headaches if you help me, thank you ! You can contact me on my yim.. xerrin01

Reply With Quote
  #13  
Old December 19th, 2007, 08:24 PM
On_Looker On_Looker is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Dec 2007
Posts: 11 On_Looker User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 14 m 39 sec
Reputation Power: 0
i might be intrested.

Reply With Quote
  #14  
Old December 31st, 2007, 01:31 PM
kiji8989 kiji8989 is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Dec 2007
Posts: 1 kiji8989 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 19 m 48 sec
Reputation Power: 0
Exclamation

I need you really really bad. I have a pet site to-be at thevoid.spruz.com and I cant pay anyone to do it. The best I can do for payment is send donations from the website untill I pay it off. I have all of these wonderful ideas and art! so if you could just make an account and message me (kiji8989), I'd give you a forever premium, and you can be an Admin.

Reply With Quote
Reply

Viewing: Codewalkers ForumsGeneralBarter Zone > I am a rusty PHP/MySQL programmer looking for projects, ill do for free


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 

IBM developerWorks