Jump to content
MakeWebGames

4thdesign

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by 4thdesign

  1. Thanks...can someone move this post then to the correct place?
  2. Just to add to this, I am using a reseller account for all my hosting, I have a few customers, and I have quite a lot of space available. Just trying to use up my space by making some offers, I dont see why i am paying x amount, when I am not utilising it, I may as well offer what space I have to anyone that wants it. Normal price for what I am offering on my site is £3.99 per month. The choice is yours.
  3. I do have a professional website, I just dont need to advertise it. Dont judge me for what I am doing, if you dont want the hosting, then say so. If you dont trust me, then dont contact me, if however, you ARE interested, then contact me as mentioned.
  4. Guys,   Firstly, I have permission from Betrand to post this. :)   Secondly, I want to let you know that I have shared hosting available for 99p per month. A cheap price to pay if you want something basic, or for testing purposes.   I know its not free, but hold on..... This is what you get:   FULL CPANEL ACCESS 1Gb Bandwidth 200Mb Webspace 1 FTP Account 5 Email address's 3 MySql Databases Frontpage extensions and CGI access A CPANEL account for your domain. (YOU provide the domain name, I will provide the DNS to point towards)     As you will have FULL CPANEL ACCESS, you get your own account, where you will also be able to install FANTASTICO scripts. I know you may not be interested in these, but its available if you want to have a play with some other software etc.   Please contact me ONLY via MSN - [email protected] for a discussion.   The 99p per month for what I am offering is just one option, if you want something tweaked to your own needs, then we can discuss this on MSN.   Thanks :)
  5. Yes, am testing this on the server. Just replaced the coding as suggested, still no image and still getting the error Warning: Wrong parameter count for max() in /home/mydomain/public_html/game/stockchart.php on line 39 although its line 55 now due to the extra code. Off to bed chaps, thanks for helping, will start from scratch tomorrow using all your advices that have been posted. Perhaps i have done something extremely silly in my tiredness! Thanks guys :)
  6. Tested GD library, works fine :) Just copied the file again, made the changes and stockchart.php when using the browser, shows this error Warning: Wrong parameter count for max() in /home/mydomain/public_html/game/stockchart.php on line 39 which is this on line 39 $maxval = max($data); Which parameter is wrong? ;(
  7. hmmmm.....basic error, was looking at that and wondering where mysql.php file was !!! Ok....changed it, still didnt work, reverted back to using $q=mysql_query("SELECT * FROM users ORDER BY username ASC LIMIT 6",$c); in stockchart.php and i still cant see an image, and on looking at stockchart.php in the browser, it still shows up the same errors as before There is no reason for it not to connect to the database, everything else is working, so its connecting, but this stockchart.php file is wrong somewhere, but not sure why?
  8. Thanks but....still not showing the image :(
  9. Guys....sorry, but you will have to forgive me for being a real noob when it comes to coding, but....i had a go here: (i want to pull the data out of the users table to show a graph of users names and the money they have)   <?php /* -- stockchart.php */ include "mysql.php"; $q=mysql_query("SELECT * FROM users ORDER BY username ASC LIMIT 6",$c); $strData = '$data=array('; While ($r=mysql_fetch_array($q)) { $strData .= "\"" . $r['username'] . "\"" . ' => ' . $r['money'] . ','; } $strData .= ');'; eval($strData); // create image $width = 480; $height = 250; $image = imagecreate($width, $height); // colors     But the image doesnt show,.....any ideas? ps....if i browse to stockchart.php, i have a bunch of code coming up which is showing lots of errors, but the first error, indicates the following: Warning: include(mysql.php) [function.include]: failed to open stream: No such file or directory in /home/mydomain/public_html/game/stockchart.php on line 7 and line 7 in the stockchart.php file is:   include "mysql.php"; Any ideas whats gone wrong here?
  10. Brilliant....dead easy when you know how. I even looked at the table and was expecting to see an admin field....FAIL ! Thanks again ;)
  11. Guys, I made a boo boo. In my admin panel, i changed my status to member by accident (doing things too quickly and not reading properly) I am guessing that i wont be able to undo what i have done or give myself admin access unless i go into phpmyadmin. So my question is this, where or what on phpmyadmin do i need to do to make myself an admin again? Thanks for your help in advance :)
  12. Thanks for the info.   However, call me stupid (no ... dont really) but i was more confused by the txt file. How is this laid out? Like this? (as wrx posted) attack kick shank backhand   or something else? Is the txt file really that simple?
  13. Can you clarify the txt files?   In the txt files, how do we write the message?
  14. I would like to know how to do this as well please?
×
×
  • Create New...