Search results

  1. T

    my submit button stoped working after chaigng id to id[]

    because one of my buttons sends check boxes value via post mthod to another page and it has to send data as array!
  2. T

    my submit button stoped working after chaigng id to id[]

    Hi all i have problem with my java script that stoped working after chaning check box name from id to id[]. In one page i have 3 buttons. one that uses javascript to send songs to another page via url get method. One that submits check box values to next page via post .The 3th one clears the...
  3. T

    problem reciving check box values using post method

    Fatal error: Unsupported operand types in file.php on line 18 and pointing to the same line where the query is !!:-(
  4. T

    problem reciving check box values using post method

    Many thanks for u reply i tried your suggestion and i got the following error: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in file.php on line 19 I be happy if u help me fix this problem.Thanks <?php $user = "root"; $pw...
  5. T

    How to store selected songs ids in db?

    Many thanks to u reply.so u mean i need to alter : ID|filename|artist|album|title|track|comments|genre|seconds|filesize|bitrate ? How i can set up PlaylistID as a foregin key and the songID? could u tell wirte me the create table statments for those tables with their relationships?Thanks
  6. T

    problem reciving check box values using post method

    Hi all i got a form with many checkboxes and i want to pass checkbox varaibles to a new page using post method but the problem is that each time the first variable get pasted .Beleow u see part of php code that recives the passed variables. When i run this script by selecting 3 check boxes which...
  7. T

    How to store selected songs ids in db?

    Hi all i have a db for my music collection. It has one table with the following feilds on it: ID|filename|artist|album|title|track|comments|genre|seconds|filesize|bitrate I already created pages that with checkboxes that user select indvidual songs and by click of play button it goes and plays...
  8. T

    how to pass user info to diffrent pages using sessions?

    Hi all i wonder how i can pass user information such as login name to diffrent pages using sessions. My intention is that i want in diffrent pages the php pages automatically knows who is using the page and where user log name is necessary it is avaliable by just doing echo $username or using...
  9. T

    How to output part of feild using mysql

    Hi all. i got a huge list of mp3 that they are in diffrent folders. I put all the songs infor in mysql database in a table called files. I want a query db that output foldernames for me .The folder name is part of feiled called filename in files table. The value of filename is like this stored...
  10. T

    Error checking for table fields null value constraint

    Hi all. I want to check for not null value constraint for all tables in database . I tried the following but when i run it i get the following error: Compile error: Invalid Next control variable reference I be happy if some one one help me fix this error.if i remove the bold lines the program...
  11. T

    How to add feild size and null constraint check to this vba

    Hi guys. I have a program that i want to add feild size and null constraint check on it and make it work on accesss 2000 . I be happy if some one help me modify this code so it generate Acess sql statements so that i be able to paste it in sql window of acces 2000 and it excutes. .Thanks On...
  12. T

    could any one explain this code for me ?

    Thanks for all of u for your nice replies. I be happy if u explain to me the following: 1)I wonder why we do like this : strFields = strFields & "," & fld.Name & "" rather then just puting fld.name equal to strFields. 2)Does strInsert hold feild name only or any other part of sql statement ...
  13. T

    could any one explain this code for me ?

    Hi expert. could any one explain this code for me. I do not understand some parts of it. I know the output but not some parts of the code.Thanks Private Sub processButton_Click() Dim fso As New Scripting.FileSystemObject <------ Dim io As Scripting.TextStream...
  14. T

    Create table statement syntax error in access 2000

    Hi guys i tried to run this create table statement and each time i get syntax error. I pasted the code in sql view windows of access 2000 and pressed the run code and i get this error massage saying there is syntax error. Could any one help me write correct create table statement that does...
  15. T

    problem understaing this vba code!

    Many Many thanks for your nice explaination. opss i forgot to paste this last part . could u tell me why we write the result two times? you said the it writes the result to syskeys . as u see why table name is writeen 2 times? i be happy if u expalin this and this last part of the code.Thanks...
  16. T

    problem understaing this vba code!

    Hi all. I got a access vba 2000 code that i hardly understand what some of its part doing. i need to learn this since i want to learn how to refrence these system tables. I be happy if some expert explain to me what these part does.Thanks part1: Set rsMetadb =...
  17. T

    Help need in setting up Call to Open/Save dialog box

    Many thanks for u reply. In my form a got a button that is loading external mdb. then i got another button that on click should display all the fields inside the list box. When i click notthing happens. I want to run the fieldname code for the external loaded db not current db. I be happy if u...
  18. T

    Help need in setting up Call to Open/Save dialog box

    Many many thanks for u reply. i can make the load the db but now i want to use the current loaded db for this code. Here is the code that i want to use the curent loaded db rather then current db.I be happy if u tell me what parts do i need to change. Is there a global solution since i got many...
  19. T

    How to add linked tables objects to this access query output?

    thanks for u reply. i get this error. Syntax error. Missing operator !
  20. T

    How to add linked tables objects to this access query output?

    Hi everybody. I got a query that displays object name and object type of access 2000 db. Unfortuenly it dose not display the linked tables objects(linked to tables in acccess 2000 db). could an expert tell me how i can fix this query so it displays linked tables object as well.Thanks SELECT...
Back
Top Bottom