61 Posted Topics

Member Avatar for karmatech

A contact us page will require that you use a form and the form needs to have an action - the action is which other file, usually a php file, that it will send the data to. The php file then processes the data sent to it to construct the …

Member Avatar for davy_yg
0
320
Member Avatar for zebnoon1
Member Avatar for Divij

Why should the scenario need changing every year??? It's still a valid problem to be solved, and could easily be one of a set of two or three scenarios that get cycled round each year so that this year's students can ask last year's students for the answer. What matters …

Member Avatar for pty
0
988
Member Avatar for Sibuns

Phone number is NOT an integer You don't add, subtract multiple or divide them Phone numbers are strings. And often have spaces in them for ease of reading (integers don't have spaces in them, do they?) Client address - should be split to include address and city, as well as …

Member Avatar for Sibuns
0
482
Member Avatar for MageHit
Member Avatar for azgold

`<td Bgcolor=<?php echo $row['PMStatus']?>` this says the Bgcolor= the $row['PMStatus']? And bgcolor is not a valid style name, and you should be using css to style it anyway. Also you havn't included you <table> or </table> tabs You should building it like this. <table> then the loop echoing each row …

Member Avatar for john_111
0
282
Member Avatar for UI

<form method="post" action=""> this occurs at two points in your code - line 46 and 54. So with no action to carry out, you will not get any updates of data edited in the forms occurring. The action is the file to run to carry out the update using the …

Member Avatar for diafol
0
262
Member Avatar for Akshay_5

Your input form is only asking for ONE job field. You can add to the form two or three more job fields ( or state fields as well I suspect). then process the input to concatenate these extra entries IF the extra fields are used, then alter your sql query …

Member Avatar for john_111
0
2K
Member Avatar for Richard_35

Read up on media queries. These set widths based on screen size with some sizes chosen to correspond to a few popular sizes of devices. You create a series of these media queries in your css file, set to be triggered if the screen is below or above the sizes …

Member Avatar for gentlemedia
0
368
Member Avatar for Sashika_1

A union is intended to produce all the results as if they were in one table so for tableA {x,y,z,a,b,c} and tableB{p,q,r,s,t} , a union that asked for columns x,y,x from tableA and union with columns q,r,s for tableB would return the data x,y,z followed by q,r,s below it. That …

Member Avatar for Santanu.Das
0
967
Member Avatar for Joe_10

You could add a few lines after that last if statement as an else to it (ie it has successfully been moved) to display the filename in another pop-up perhaps. putting it rather crudely, If (moved) !=true{ exit() } else { display filename }

Member Avatar for Joe_10
0
250

The End.