View previous topic :: View next topic |
Author |
Message |
max_carpenter -
Joined: 18 Mar 2005 Posts: 124
|
Posted: Sun Jul 17, 2005 8:19 pm Post subject: php needs ples help urgent! |
|
|
Hi everyone. Got some very important urgent needs with php hope you can help.
Basicly the background is I am designing a website for gamerzshop.co.uk and i need some things built but cave to use php or javascript no other language supported by his host.
Firstly I need a script that will display a access database table on a page. The table will consist or something like, Release Date, Game Title, Description.
I also need to determin colours or the page.
I also need a php search script that will search for game titles and related title and display a results page if it can search a access database then that is great.
I need some help and programming not just a made script needs to be customized. If anyone can help will be really grateful
Thanks
Max |
|
Back to top |
|
 |
Tim1681 -
Joined: 17 Jan 2005 Posts: 160 Location: Bristol, CT, USA
|
Posted: Mon Jul 18, 2005 3:30 am Post subject: |
|
|
I know this doesnt exactly answer ur question but this book helped me alot:
http://www.oreilly.com/catalog/progphp/
I would defenitely suggest buying it if u want to learn programming any sort of PHP from Basic to Advanced. Even though i do not own any of the other books on the site that are about PHP i have read through most of them @ the Barnes & Noble book store and they are all really good. Just depends on what your going to be doing in PHP. |
|
Back to top |
|
 |
max_carpenter -
Joined: 18 Mar 2005 Posts: 124
|
Posted: Mon Jul 18, 2005 7:47 am Post subject: |
|
|
Thanks for your suggestion but don't have the time or budget to go buying my self stuff.I don't want to learn php yet learning other languages first i just need these scripts made up. _________________ M.Carpenter
DHCD Computing
max@dhcd.co.uk
www.dhcd.co.uk |
|
Back to top |
|
 |
mtbiking -
Joined: 18 Mar 2004 Posts: 66
|
Posted: Tue Jul 19, 2005 8:54 pm Post subject: |
|
|
not enough info mate,
if you could tell us a little more like
operating system (OS)
database type
number of fields
servertype
....
....
....
how much you willing to pay if someone can do it for you _________________ Check It Out... Nochex Classifieds |
|
Back to top |
|
 |
Anonymoose -
Joined: 09 Sep 2003 Posts: 2192
|
Posted: Tue Jul 19, 2005 9:42 pm Post subject: |
|
|
mtbiking wrote: |
how much you willing to pay if someone can do it for you |
I'm guessing $0.00 ;( |
|
Back to top |
|
 |
k1ll3rdr4g0n -
Joined: 04 Jul 2004 Posts: 609
|
Posted: Tue Jul 19, 2005 9:44 pm Post subject: |
|
|
Anonymoose wrote: | mtbiking wrote: |
how much you willing to pay if someone can do it for you |
I'm guessing $0.00 ;( |
Thats why I didn't post anything :P. _________________
 |
|
Back to top |
|
 |
mtbiking -
Joined: 18 Mar 2004 Posts: 66
|
Posted: Tue Jul 19, 2005 9:51 pm Post subject: |
|
|
thats disgusting he'll be getting paid by someone to do this for them but
he wonts someone else to do it for nothing so he can get paid by then
tut tut _________________ Check It Out... Nochex Classifieds |
|
Back to top |
|
 |
max_carpenter -
Joined: 18 Mar 2005 Posts: 124
|
Posted: Tue Jul 19, 2005 11:37 pm Post subject: |
|
|
No you are wrong there. I am not getting paid for this. The money transfered is only for cost no profit it is a mate of mine.
He is on a very tight budget and therefore I said I would do it for free.
The server os i think is xp
database type having slight problem with as it is now reporting as no database types available on hosting so I have emailed the host and awaiting a response.
As for fields I would say date game title and desciption so three if not I would say 2
Thanks again everyone
M.Carpenter _________________ M.Carpenter
DHCD Computing
max@dhcd.co.uk
www.dhcd.co.uk |
|
Back to top |
|
 |
mtbiking -
Joined: 18 Mar 2004 Posts: 66
|
Posted: Wed Jul 20, 2005 7:53 pm Post subject: |
|
|
if it is a sql database it should be easy enough to make something basic for you to develop on but thats all i could do i am too busy
to bring out all the database into html
i don't know if this will work but thats what it should look like
i'm not very good a writing scripts and knowing they'll work. like others on here i have to test them
anyway heres what i got
Code: |
$location = 'localhost';
$username = '';
$password = '';
$database = '';
mysql_connect('$location', '$username', '$password');
@mysql_select_db($database) or die( "Unable to select database");
$result = mysql_query('SELECT * FROM table');
echo "<table>";
while ($row = mysql_fetch_array($result)) {
echo ("<tr><td>{$field1}</td><td>{$field2}</td></tr>\n");
}
echo "</table>";
|
_________________ Check It Out... Nochex Classifieds |
|
Back to top |
|
 |
max_carpenter -
Joined: 18 Mar 2005 Posts: 124
|
Posted: Thu Jul 21, 2005 8:47 am Post subject: |
|
|
Thank you very much for the reply. I am just waiting for the hosting company to get back to me about databases then I will begin playin around.
Thanks again
M.Carpenter |
|
Back to top |
|
 |
|