Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~6K People Reached
Favorite Tags
Member Avatar for morrisproject

I currently have a webpage (for example 'conveyor') with contains many buttons, when a button is clicked the user fills in the relevant fields on the page (page 2) and saves the record, which then turns the text on the button on 'conveyor' to red, to show the user a …

Member Avatar for diafol
0
109
Member Avatar for morrisproject

Hi, Please can someone tell me how to upload images to my database table images. I would like to be able to link to these images eventually from a link on my webpage. I would need to be able to upload more than one image at a time.

Member Avatar for LastMitch
0
157
Member Avatar for morrisproject

HI, Is it possible to be able to upload a load of images in one go from a camera, using there file name and saving them in to my database? I have created a table called images, with fields, image_num and image.

Member Avatar for diafol
0
454
Member Avatar for morrisproject

I am trying to get a searched date from one page to appear on another page, i have this code on one page so the user can search for a specific date: [CODE]<?php if(!empty($_POST['searchdate'])) { $mydate = $_POST['searchdate']; } else { $mydate = date('Y-m-d'); } $id = $_POST['id']; if(empty($id) && …

Member Avatar for morrisproject
0
306
Member Avatar for morrisproject

I want to validate a textbox, currently im using this: [CODE] <script type="text/javascript"> function validate_form (){ var Motor_Frame = document.getElementById('Motor_Frame'); if(Motor_Frame.value == ""){ alert("Please fill in Motor Frame. If no motor please fill in with N/M") document.forms[0].Motor_Frame.focus(); return false;} return true; } </script>[/CODE] but i want it to check a …

Member Avatar for sufyan2011
0
169
Member Avatar for morrisproject

i have a tabbed menu with the following tabs: <ul class="TabbedPanelsTabGroup"> <li class="TabbedPanelsTab" tabindex="0">Island A</li> <li class="TabbedPanelsTab" tabindex="1">Island B</li> <li class="TabbedPanelsTab" tabindex="2">Island C</li> <li class="TabbedPanelsTab" tabindex="3">Island D</li> <li class="TabbedPanelsTab" tabindex="4">Island E</li> <li class="TabbedPanelsTab" tabindex="5">Island F</li> <li class="TabbedPanelsTab" tabindex="6">Island G</li> <li class="TabbedPanelsTab" tabindex="7">Island H</li> <li class="TabbedPanelsTab" tabindex="8">Island J</li> <li class="TabbedPanelsTab" tabindex="9">Island …

Member Avatar for lps
1
108
Member Avatar for morrisproject

Is there anyway i can link a session to a particular table within my database, well i think this is how i need to do it. I have different tables which hold information for different shifts. The user selects the Site from one page, then selects the shift from another …

0
70
Member Avatar for morrisproject

I am trying to link fields between 2 of my tables but its not working. I have a table called assets, which consists of Asset_ID and AssetType and a table called t5_week3_shift3 which also consists of these 2 plus others. Im not sure whether to do away with the assets …

Member Avatar for smantscheff
0
148
Member Avatar for morrisproject

Hi I am using the following code to logout: my logout button calls logout.php [U][B]logout.php[/B][/U] <? session_start(); session_destroy(); header("location:site.php"); ?> This doesnt seem to reidrect to my site.php page, it just loads a blank logout.php page, any ideas?

Member Avatar for hakeemtunde
0
122
Member Avatar for morrisproject

Hi, My layout.php form has many buttons it and a current date field, which all have a unique id/name. when the button is clicked it uses the id and date on the new.php, so when the record is saved it is saved relating to the id and date and other …

Member Avatar for raphie
0
3K
Member Avatar for morrisproject

Hi, What code would i need to use for my php form, so when my record is saved using my save button on my form to my mysql database, it displays a message to say "Record Saved".

Member Avatar for morrisproject
0
128
Member Avatar for morrisproject

I am trying to use javascript to validate text boxes on my form. I am currently using this code: [CODE]<script type="text/javascript"> function validate_form (){ var myTextField = document.getElementById('Motor_Temperature'); if(myTextField.value == "") alert("Please fill in Motor Temperature") return false;} else { return true; } </script> </head>[/CODE] But i keep getting an …

Member Avatar for jmichae3
0
145
Member Avatar for morrisproject

I currently have fields on my form which are set up as integers in phpmyadmin. I want to be able to display error messages if any field has been left blank when save is clicked, but at the moment i keep getting column '......' cannot be null. or maybe an …

Member Avatar for morrisproject
0
124
Member Avatar for morrisproject

Hi I have created a new Recordset which uses the ConveyorNumber to display information relating to a particular conveyor. The recordset should use this from the conveyornumber field on a prevoius page so when history is clicked the hostory of that one conveyor will appear. I have added a Dynamic …

Member Avatar for Nick Evan
0
173
Member Avatar for morrisproject

I current have a column in my database called ConveyorNumber, which could be something like CMD1234, CMD1256, CMD1136 etc. I also have a column called Asset_type which relates to the conveyor number. So depending on the conveyor number the asset type will change, its a description of the conveyor type. …

Member Avatar for smantscheff
0
120
Member Avatar for morrisproject

I have changed a column in my database from the primary Key to Index, as i need to allow the same reference in the column for multiple entries with different dates against them, but now i need to adjust my queries. how do i do this?

Member Avatar for smantscheff
0
172
Member Avatar for morrisproject

I am using a dreamweaver form, which has some buttons on it. The button id is stored in the database as the conveyor number. When updating records i want to be able to click a button, which will use the button id to call for the correct record in the …

Member Avatar for morrisproject
0
133