- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Territorial Soldier
80 Posted Topics
Re: I'm not sure which database you are trying to connect to but try [url]http://www.connectionstrings.com/[/url] It should be able to help you work out if the problem is with your connection string or not | |
Re: well i had a few hiccups where it was just echoing the php file so here are the few changes i made to get it all working [CODE] <?php $id = $_GET['id']; if ($id == 'index') { echo("This is the INDEX file"); } if ($id == 'portal') { echo("This is … | |
Re: not totally sure if this would work but have you tried using header('Location: script name'); its a nice php way to go to a page, not sure if it would work though. or you could use a nice bit of JavaScript/AJAX | |
Re: [QUOTE=platinum8;864592]I would say better you could get knowledge about server-side languages like PHP, Perl, ASP.Net, Ruby/Rails, Python/Django, etc. if you want to build a browser-based game. I feel [URL="http://acidavengers.co.uk/tutorials/PHP%20Game%20Programming.PDF"]E Book i bought [/URL] might help you.[/QUOTE] Wow i love how you link to my site and even use the exact … | |
Re: [CODE=PHP] mail(" . $busmail . ","Order Confirmation","Your Order Has Been Received And Is Now Being Processed. [/CODE] needs to be [CODE=PHP] mail($busmail, "Order Confirmation","Your Order Has Been Received And Is Now Being Processed. [/CODE] | |
| |
Re: not sure if it would make a difference but get rid of the space after "[" and maybe change $abc = to $SOMEOTHERNAME = | |
Re: get rid of the semicolon ";" after while($i>=1).... but the way in which you are doing the while loop will cause an infinate loop | |
Re: Try splitting it down into sections see what happens there, and also try replacing rand() with say 5 and see if you still get the error | |
Right i'm currently writing up an outline for a web based RPG (yes i know it has been done over and over). And i was wondering what people would suggest that a good starting point (code wise) would be and what they feel/know to be the hardest parts of RPG … | |
Re: C++ 2 Months PHP - 5 Months ASP - 1 Year HTML - 1 Year CSS - 5 Months JS/DHTML/AJAX - 3 weeks FORTRAN - 1 month VB - 3 Months That is my total so far, and i have been programming for no more then a year | |
Re: VS, 3DS Max and [B]especially[/B] Maya is extreamly worth while to learn and i agree with Narue on DarkBasic | |
Re: look at C/C++ start from hello world and work up | |
Re: For webhosting, it would completely depend on what you would be looking for, how large the community is etc. For something the size of Daniweb i would guess that they are either running a VPS or (more then likely) a dedicated server. I tend to offer hosting to smaller companies … | |
Re: I have been having this happen for about a week or 2 and thought it was just me lol. and i notice that there is "apparently" a JavaScript error when the submenu's decide they dont want to come out | |
Re: Well i dont know much about Paragent but ionCube is a software that i would recommend to help slow software piracy down, yes i said slow not stop because it will never be stopped, not if the cracker is determined and has the right resources. | |
Re: You could store it in a variable so: [CODE=PHP] <?php if(isset($_POST['push'])) { $text .= $_POST['write']; echo($text); } ?> [/CODE] | |
Hi, i was running a script on my server (Latest apache and mysql and PHP 5.1.6) and i am getting the following PHP error: PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime … | |
Re: i would suggest starting learning hello world in a web based language (php, perl, asp etc) then move onto a blog style system then try a game | |
Re: you dont ask for much do you jbennet :P and yea it would be nice to not have recurring payments.... not everyone would appreciate that | |
Re: Glad to see another new person around, hopefully you will stay active within the community | |
Re: if you want some free hosting for a game, send me a PM with some details and i should be able to help you out ;) | |
Re: Well it would depend on what facilities in general you want to feature | |
Re: If that is all the code from the page it is because you forgot the closing curley brace } for the while loop | |
Re: Looking at the code side of it you will need to be able to optimise the code so that it can search through the massive dictionary files as quick as possible. Also you need to be able to predict what word the user is trying to spell | |
Re: Well i would have to agree with the previous posts. If maintianing the system is not in the original contract then you have a choice to make, you can either get them to write up a new contract OR you can take the optimisation on as part of a good … | |
Re: Well you could proberbly use a bit of AJAX to refresh the page when the upload is done, or maybe even a header relocation could work, depends on how the file(s) is uploaded | |
Re: Have the ranks changed? In your post at the beginning Dani you said that you get to posting whiz >= 100 posts, well you only just get your junior poster at that point :P | |
Re: Correct me if i am wrong but i thought mysql_result only accepted 2 parameters, not 3 ;) | |
Re: Are you sure that the simple xml extension is enabled and that short tags are disabled | |
Re: if you added a .php extension create another file and call it info.php for example and place this code in it: [CODE=PHP] <?php phpinfo(); ?> [/CODE] if that doesnt work then PHP isnt installed properly | |
Re: People wont help you unless you have tried to do it yourself, go have a look at google | |
Re: the way in which those files work depends on what code you put inside of them. They dont do specific jobs, they are just useful names to help you remember what is in them, for example: common.php usually contains any piece of code that you would commonly call like session_start() … | |
Re: you would need to query the database with something along the lines of: [CODE=PHP] $query = "SELECT * FROM `prod_listing` WHERE Product_ID = '$id'"; [/CODE] Where $id is the product id that was clicked on | |
Re: Welcome CyberAngel you sure have some weird and wonderful loves :) so im sure you will get on well here | |
Re: Hi, welcome, have you got a preview of your work? And im sure you will do fine soon enough | |
Re: Hey Jim, Python is a nice place to start but as already mentioned try VB as it is easier to start with | |
Re: I'm not 100% sure (just woken up and skimmed the code) but arent you trying to convert a directory into a file on your copy command? Also i believe there is an image part of the multi dimensional array that is the bit you need to copy, not just the … |
The End.