I think I did, but as I said I dont know how to use those primary keys, does it matter which column i set as primary key?
"Each table in a database should have a primary key field.
A primary key is used to uniquely identify the rows in a table. Each primary key value must be unique within the table. "
Thats what I found out, in your videos you use old phpmyadmin db or something thats why I had a problem with it. I have to create a new field called whatever I want as a primary key for each table/column. I also read that I have to set is as AUTO_INCREMENT and NOT NULL setting to this field I set as primary. is that how its supossed to work? Does that mean I can simply change name/id into auto_increment and not null so it will work? and can I still use it with my code? or should i simply create a random field and set it as primary key?
and second question, if I want to start my own game for learing as well as I want to keep following your tutorial, how do I create a database which will contain same stuff like characters/names/id/store/inv/stats? wont they prevent each other from working? or is that not possible? and if I create a new project I simply use same db for it with different tables? like players2/store2/name2/attack2. I am at around 11 episode, when I was at 7-8 I was able to add gold using info u provided as well I made it to drop from monsters on dead using same math you used for experience since I dont know how to do it other way. I had problem with buying stuff for gold, because I updated store.php instead of that other file. well anyway I hope u can help me so I could try something on my own, w/o deleting db I created following your videos. Thanks
@edit:
I am so dumb
Code: Select all
if(!mysql_select_db("tutorial",$db))
I can start creating something on my own with help of your tutorial, but still I need help with first problem, I might solve it by myself (if I didnt solve it already)
btw I have read on forum u said something about updating your videos since they are old or something, any idea when you are going to begin it?