73 Posted Topics
![]() | Re: The french have some weird bursts of energy in games...Maybe they'll surprise you but I think NZ will take it ![]() |
Re: you guys can disagree with me...but it sure helped me! Start by following the php tutorials on - [url]http://w3schools.com/php/default.asp[/url] It doesn't go into much dept but gives you a good overview! And then for my database I used mysql. Then I found this site with all you need php files … | |
Hi All! I got a problem with one of my files where I can't upload a file to my database. I want to save the path in the db but it gives me an error and says the "Filename cannot be empty". In my .html [CODE] Upload a profile picture(50px … ![]() | |
Ola! I'm still kind of new with the whole assembly language and just need some help with this program i'm writing. What I want it to do is to ask a question -like for a number and then store that inserted number in a variable. And then test whether its … | |
Re: just spit balling here but does GW_UPLOADPATH include the new directory? for example the file your pictures are in? And i would do it like [CODE] echo "<strong>gw_uploadpath with screenshot 4:</strong><img src='.GW_UPLOADPATH.$screenshot.'><br />"; [/CODE] cause i'm also having a kind of similar problem in my thread.../threads/388028 | |
| |
Re: Your problem is that in your php file you declare your box1 and 2 as id's but you never use them in your actual style sheet! So in your stylesheet it should be [CODE] #box1 { position: absolute; left: 100px; top: 100px; } #box2 { top: 100px; position: absolute; right: … | |
Hi! I would just like to know if its possible to give an linked image the ability to send the form instead of a submit button? Like in the example below: [CODE] <form method="post" action="Search.php"> <table id="search"> <tr> <td> Search: <input type="text" name="search" id="search" placeholder="Search for friends"/><td><a href="Search.php" action="Search.php"><img src="graphics/search.png" … | |
Just something small and I'm not sure how to do it. What I want to do when the user cannot be found in my DB then it should: 1. Print out -I wanted to use a pop-up to inform the user that he has entered incorrect log in details. Which … | |
Hi guys! I got a problem with my logging in system. I can connect to my database with the code: [CODE]session_start(); include('header.html'); $page_title = 'Home Page'; $mail = $_POST['email']; $password = $_POST['password']; $msg =''; if(isset($mail,$password)){ $con = mysql_connect('127.0.0.1','root',''); if(!$con) { die('Could not connect: '.mysql_error()); } else{ echo "Connected!"; } } … | |
Re: I'm not really an expert but just to give you some advice,cause I know seg faults really makes one just want to give up. You probably know but just check for where(normally in for-loop) tries to access or create elements outside of the range of the array. Like is all … | |
Re: take a loot a bit at [URL="http://www.daniweb.com/forums/thread32974.html"]this[/URL] thread. | |
Hi Everyone I'm busy preparing for my programming examination and I would really appreciate it if someone could just give me some references(websites) to some c++ programming exercises. I believe the best way to prepare for this kind of examination is to practice writing code and understanding it. Thanks! | |
Re: Heard there's an up coming Star Wars 3-D movie!Not sure of which one,think it is a remake | |
Re: have you tried it in Linux? Or do you only use Windows 7 and XP? | |
Re: How I Met Your Mother Big Bang Theory Scrubs Two And A Half Men ALL THE BEST!! | |
Re: well just thought I might just help try doing this: It gives you a random number each time [CODE] #include <iostream> #include <cstdlib> //for the rand and srand function #include <ctime> //for the time function using namespace std; int main() { unsigned seed = time(0); srand(seed); cout << seed << … | |
Hi. I would like help on undoing and redoing using the memento design pattern. I want to save a state that a board is in. Like a chessboard. If the user uses the undo option a previous board should be loaded and all of the states that the pieces was … | |
Hey everyone, I'm having abit of trouble with a seg fault. As said in the topic, the piece of code that gives the error isn't really working with an array. I ran the program through the gdb tool in g++, and it says the the seg fault occurs in the … | |
Hey just wondering if someone could help me please with the following: board.h [CODE]public: Piece* Player1Pieces; Piece* Player2Pieces;[/CODE] (a section showing the initialization of the arrays) board.C: [CODE]Player1Pieces = new Piece[18]; Player2Pieces = new Piece[18]; char arrX[9] = {'a','b','c','d','e','f','g','h','i'}; for (int FootCount = 0; FootCount < 9; ++FootCount) { --->> … | |
hi guys I got this weird error which I cannot debug in my code. The program is to convert Roman numerals to Arabic numerals using the Interpreter design pattern. Here is a part of the program where the errors occurs RNInterpreter.C:8: error: new types may not be defined in a … | |
Re: maybe try [URL="http://sourcemaking.com/design_patterns"]http://sourcemaking.com/design_patterns[/URL] it helped me alot | |
The End.