-
Posts
122 -
Joined
-
Last visited
Never
Everything posted by runeveryday
-
i see there remain duplications Darren Ryder and 4758 Emily Drive, so i think its fail 1NF is it right?
-
Title | ISBN |Price |Cust. name | Cust. address |Purch. date PHP Cookbook |0596101015 |44.99 | Emma Brown 1565 Rainbow Road |Mar 03 2009 Dynamic HTML |0596527403 |59.99| Darren Ryder 4758 Emily Drive |Dec 19 2008 PHP and MySQL| 0596005436| 44.95| Earl B. Thurston 862 Gregory Lane |Jun 22 2009 PHP Cookbook| 0596101015 |44.99 | Darren Ryder 4758 Emily Drive| Dec 19 2008
-
a database within a human resources database that stores the manager-subordinate relationship. we’ll impose the business rule that each manager may have one or more subordinates while each subordinate may have only one manager. how many tables shoud i make ? and how many rows and columns i should make. thanks in advance!
-
i want to make a database for a libary,but i don't know how to do this.how many tables i should be make? the fields i can think of are "id" "books name" "price" "ISBN" "author's name" "category" "the press" "the time of the publication". how to make the database? if i want to design a database?the first i must do is ?the second...? the third...? any tips would be appreciated!
-
Thanks a Lot for spending time with my questions. But it would be helpful for me,if u explain the first ,second,third normal form with some simple examples here....so that I can understand it very clearly................
-
i can't understand. table1: StudyNo | Name | Sex | Email | ClassNo 01 john Male [email protected] 200401 02 mary famale [email protected] 200402 table2: ClassNo | ClassAddress 200401 Abuilding1 200402 Abuilding2 are fit for the second NF,the primary key is StudyNo ,ClassNo why the first doesn't fit for the second NF
-
StudyNo | Name | Sex | Email | ClassNo | ClassAddress 01 john Male [email protected] 200401 A building 1 02 mary famale [email protected] 200402 A building 2 the above is a table. StudyNo is the primary key,a friend of mine said the above is fit for the first normal form,but doesn't fit for the second.the reason is "ClassAddress" partial dependencies on the key ClassAddress, why?who can explain it to me! thanks very much.
-
thank you! could you tell me the execution flow of the above code?is it in sequence?
-
i am a beginner of php,i can't understand the above code's result.who can explain it for me? the more details of it .the better. Well in the code, the properties have never been set.in class User ,there is no return value? but when print_r($object) the result is "User Object ( [name] => [password] => ) "? how this come from? what the relationship between object and class. any help would be appreciated!
-
many thanks! you let me know a lot! thank you!
-
could you give me a better example to explain how the php class works? the more datails,the more better! thank you very much!
-
thanks! would you mind telling me the mean of the above example.
-
i have read some tutorials about the class of php.but i can't understand it clearly.a friend of mine give me an instance. i konw state a class is class classname{ } but in my friend's example the form is class classname(){ } is it right? who can give me the details about the class. Any hint would be GREATLY appreciated.
-
Basically you are working with classes. how do you know that is classes not function. thx!
-
property? thank you very mucn for you reply!
-
i am a newbie of php,maybe this is a simple and a little silly question,but i want to know the true principle of it.hope someone can help me . Q: there is a function,and have a form like this $a->b in a function bracket.what is $a->b mean and have what effect? the sign '->' mean is? eg: format_date($comment->timestamp) anyone's reply is appreciated!
-
how many ways that we can do to output an array's result, eg:$row=array{...} as far as i know,the followings are the output's format,which is right?and why? echo $row[$key]; echo $row[key]; echo $row['key']; i have tested the echo $row[$key]; is wrong, and what is the difference of the rest.thank you!
-
but i want to use phpmyadmin,this prevent i accessing mysql by phpmyadmin
-
i have configed the php environment,there is no error appearance.then i installed the phpmyadmin,when finished,i access my database,it popup a dialog box,which says who can help me to fix this?how can i do.thank you!
-
thanks for you response!what a pity, i can't understand that.maybe i know XML and RSS not much.are there some articles can help me understand these.would you mind giving me some tips.
-
who can tell me what the $rss->channel->item mean. in php,i found state a class's format is when refer the content of the class,the format is $variablename=new classname, $variablename->the content of the class,however,in the above example,i found there is now state channel in SimpleXmlElement($feed);why? i am a beginner of php and expect some can explain these details. thank you!