Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: VitoCorleone
  • Content: Threads
  • Order by date
  1. VitoCorleone

    PHP search database and return results.

    i have a form where a user can search the database STAFF, here they insert a staff number and press submit. the next page is using the $_Post to retrieve that value on the previous page and display the records. however its not working. Can you help? Any sites? Here is the code on my 2nd...
  2. VitoCorleone

    Inserting a BLOB into MYSQL using PHP $_POST???

    hi, is it possible to insert a file into my database table using the POST method in PHP. i have seen examples using the global attributes but i need to only use POST as i have an HTML form and a PHGP confirmation page which calls the previous page values to insert. I have tried...
  3. VitoCorleone

    Can you use JOINS when inserting data?

    hello, This is a half mysql and PHP question. I was wondering if you can use JOINS to insert into multiple tables rather than using mysql_query() to invoke multiple queries? If you can, could you point me to some examples?
  4. VitoCorleone

    Inserting records into MULIPLE tables!

    hello, I have a form which i need to insert records into multiple tables. i am using $_POST to retrieve values from the previous page and have been using the following statement to insert into a single table $dbQuery = "INSERT INTO staff (staff_no, fname, lname, position_, sex, dob, salary)...
  5. VitoCorleone

    PHP is inserting blanks into MYSQL database!

    Hi, I have the following script that inserts data into my SQL database. its a simple insert query to check if it works! but when i search my database, a new rowhasbeen added but it is blank. I have looked at my code but cant find anything, can you? <?php global $strstaff; // Database...
  6. VitoCorleone

    #1046 - No Database Selected in MySQL

    Why do i get this error when i query my database tables in MYPHPadmin? #1046 - No Database Selected I cannot view any of the data in the tables in myphpadmin only Mysql Console
  7. VitoCorleone

    PHP, MYsql connection problem to database.

    hello everyone, I have a sime error but cant figure out the solution.The following PHP script inserts 2 values into mySQL database i created using the POST method. <?php global $staffno; global $fname; // Database connection variables $dbServer = "localhost"; $dbDatabase = "dreamhome"...
  8. VitoCorleone

    Fatal error: Call to undefined function, What is it!!!!!

    Hi, i have been getting the following errors when i run some of my scrpits on my WAMP5. Fatal error: Call to undefined function blah blah blah line 17 What could it be, I had a look see to check if my EXIF and MBSTRINg was installed, and they seem to be as they are in the module extensions...
  9. VitoCorleone

    Storing images, creating a image blob column?

    Hi, I would like to add a column so that images can be inserted and viewed from a mysql database. I have set up the table as follows: CREATE TABLE Staff (staff_no CHARACTER(5) PRIMARY KEY, fname CHARACTER VARYING(20), lname CHARACTER...
  10. VitoCorleone

    Simple code, but image not displaying? i get this error...

    Hi, I have the following code to display an image in PHP <?php // get a file name $file='eclipse.jpg'; // check it is a jpeg file if(exif_imagetype($file) == IMAGETYPE_JPEG) { $exif = exif_read_data($file,"COMPUTED,IFD0", TRUE); print ("Picture taken {$exif['IFD0']['DateTime']} "...
  11. VitoCorleone

    I got 99 problems and a host is one! so many!

    Hi Everyone, Choices, choices, choices. Having lots of options is great... but not when it comes to choosing one! There are too many options and then after taking all that time to choose a host, you all the questions. Where does one start? Who is reliable? What is the average price you should...
  12. VitoCorleone

    Adding a bcc in Send mail

    Here is my code and i want to know how i can create a bcc when the sendmail function is used in asp i have a hidden field on the previous page with my email address. and a field where the user enters their email add, the send page picks up those variables and sends to email which is their email...
  13. VitoCorleone

    SQL Server &gt; Dreamweaver Connection Problem.Help!

    Hi everyone, ---Im using SQL Server with which I have SQL authentication, so a user name and password. ---I create an ODBC Connection to my server and use SQL authentication radio box with my corrisponding username and password at the bottom. ---I link to my prefered database and test and...
  14. VitoCorleone

    Display File name with FSO

    I have created a dynamic site map in asp using FSO which displays all the files in a particular folder and exclude file extensions such as .xls, .ppt etc so only my asp and html pages are listed. Now.... when the files are displayed, the FSO diplays the file name. example -...
  15. VitoCorleone

    Redirecting user after login with JS Refferal

    Hello everyone, I have a login to access pages on an intranet site which allows users to view restricted pages. If a user trys accessing a restricted page they will be diverted to the login page. NOW.. I want the user to be diverted back to the page they where trying to view using JS Refferal...

Part and Inventory Search

Back
Top