8,966 Posted Topics

Member Avatar for sweety_H

If you want to do something for children: create a game. If your project needs more value, you could add a database backend to track what the children have done (and possible grade the effort). E.g. a calculus game, where you can track specific errors being made by kids.

Member Avatar for sweety_H
0
144
Member Avatar for bobby08

In MySql create a key that consist of both fields. When inserting a duplicate the insert will fail.

Member Avatar for pritaeas
0
99
Member Avatar for SethR
Member Avatar for woolistictdc
Member Avatar for Jafet
0
87
Member Avatar for Latent

Did you use the debugger, to see what happens when the code gets executed?

Member Avatar for Lord Soth
0
171
Member Avatar for ATS
Member Avatar for mddv
0
99
Member Avatar for hbmarar
Member Avatar for hbmarar
0
169
Member Avatar for timhysniu

[QUOTE=timhysniu]Thanks guys ;) I was just hoping of an idea to run a php script initiated by a visitor where a user wouldnt have to wait for the whole maintenance execution. I guess kind of like branching a single process into two. Thats something I havent done before; Im not …

Member Avatar for timhysniu
0
303
Member Avatar for tigtag
Member Avatar for DigitalDre

The most common problem is that your query does not return anything. Also, are you sure that $link still points to the correct (and open) db?

Member Avatar for Lafinboy
0
97
Member Avatar for geek

You're using pBits, a pointer to something, without getting the memory for it with getmem(). Furthermore, you've defined 4 functions, but only have code for 1. Unless you haven't posted it all.

Member Avatar for ~s.o.s~
0
131
Member Avatar for vssp

you can use the following query: INSERT INTO DB1.table1 (fieldlist) SELECT fieldlist FROM DB2.table2 From a php view you only need to mysql_connect, and you can skip the mysql_select_db

Member Avatar for vssp
0
77
Member Avatar for christyjacob

If you want it for your home network only have a look at WAMP or XAMPP. This has everything you need in one easy installer.

Member Avatar for christyjacob
0
163
Member Avatar for yaaraer

Maybe this will help: [url]http://swik.net/MySQL/MySQL+vs+MS+SQL+Server[/url]

Member Avatar for pritaeas
0
100
Member Avatar for tzan2833

The second page won't work because the <form> needs an method=POST and action=page.php added to it. A HTML page is static. You won't get the value you typed, unless you process it on the next page. index.html: [code] <form action="process.php" method="POST"> <input type="text" name="mytext"> <input type="submit"> </form> [/code] process.php: [code] …

Member Avatar for pritaeas
0
136
Member Avatar for vssp

The End.