Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~1K People Reached
Favorite Tags
php x 10
Member Avatar for genieuk

Hello, I was going to post the full script but don't think it will ne needed. Basically i have this query: [CODE]// query db $query = mysql_query("SELECT * FROM `userinformation` WHERE `username` LIKE '%$search%' OR `email` LIKE '%$search%' OR `id` LIKE '%$search%' OR `first_name` LIKE '%$search%' OR `last_name` LIKE '%$search%' …

Member Avatar for Atli
0
242
Member Avatar for szkoda

I'm creating a movie rental site and need to set the availibility of each movie. If its available, the user needs to be able to rent it, if it isnt they need to be told so. In the admin section the availibility of the movie needs to be set. Now …

Member Avatar for FlashCreations
0
93
Member Avatar for szkoda

Im trying to create an if statement based on the value in my database. [CODE] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>E Movies :: Rent A Movie</title> <link href="styles.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="container"> <div id="header"> </div> <div id="menu"> …

Member Avatar for szkoda
0
108
Member Avatar for szkoda

Been trying to work this out for hours I have two tables called 'Genres' and 'Films'. Genres contains two columns 'Genre_id' and 'Genre_Name'. Films contains a load of columns, the most important being 'Title', 'Year', Director', 'Genres'. Now im trying to create a page where the user can edit a …

Member Avatar for szkoda
0
107
Member Avatar for szkoda

How do I get a message box to display after the user has entered data into my database via a form? I know it would something like: [CODE]if (condition) { MessageBox.Show("Record Added Successfully"); } [/CODE] but im not entirely sure what the condition should look like. Any help would be …

Member Avatar for artreyu
0
94
Member Avatar for szkoda

How do I go about showing data in a database in a table or rich text box, so far I have this: [CODE=C] public static void showDogs() { OleDbConnection myConnection = GetConnection(); string command2 = "SELECT * FROM dogs"; OleDbCommand myCmd2 = new OleDbCommand(command2, myConnection); try { myConnection.Open(); OleDbDataReader myReader …

Member Avatar for szkoda
0
136
Member Avatar for szkoda

I have a database that I'm trying to inset data into called dogs.mdb. For some reason the code below doesn't seem to insert a new record into the database...please help! [code] namespace dogs { public partial class Form1 : Form { public Form1() { string connection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=L:\\Billy Uni\\Application …

Member Avatar for sknake
0
291