c0deM0nK424
Programmer
outputting list of Consultant ID's and their Names inside a DIV Box, with a checkbox alongside each row and a 'delete' button next to it.
basicaly Ive got a website that im building, its more of a web tool actualy - that allows one to monitor his/her consultants etc.
The pages all use the same stylesheet and its all CSS. Two DIV elements make my two columns, or boxes rather on the screen.
On the left box I want to somehow retrieve current ID and Consultant name info from my mysql database, and have it output INISDE that box, with either paging or a vertical scrollbar lol
This is what I'd call 'advanced' web designing because to achieve this would require on my part, extensive 'tinkering and experimentation' with snippets of other peoples of code and also trying out things myself from the php manual heh
thats how I learn. Of course I understand some of the easy-moderate level stuff, but then when things get messy or a little too complicated i look at tutorials on the web for assitance etc.
So basicaly, on the main page I have DIV 1 and DIV 2, and DIV 2 will display the consultants by name, ive already done a simply test to see if i could use php inside that particular div class , and it works. So basicaly inside the DIV class - ive embedded my php script, which connects to my mysql database, and does a simple select * from table query.
the results are outputted neatly but go OVER and BEYOND the DIV box boundary (basicaly exceeding the height at thebottom of the div 2 box)
im wondering if its time to brush on my ajax, or is that something irrelevant in this affair ?
it gets comlpicated though when you find snippets of other ppls code and attempt to 'integrate' and 'stick' it in between your own code...especialy when you've already got php scripts running inside div tags : ))
oh and i've got forms INSIDE my divs too - ive succesfully created the 'Add Consultant' form, simple text box with a Add Consultant button - you enter the name and just click that button, and that consultant is added into the Consultants table - i check in PhPMyAdmin - and sure enough, the new consultant has been added - sweeeeet ! ^_^
yeah so cmon you lot - few pointers, tips, hints, advice on how to achieve what im trying to achieve ?
basicaly Ive got a website that im building, its more of a web tool actualy - that allows one to monitor his/her consultants etc.
The pages all use the same stylesheet and its all CSS. Two DIV elements make my two columns, or boxes rather on the screen.
On the left box I want to somehow retrieve current ID and Consultant name info from my mysql database, and have it output INISDE that box, with either paging or a vertical scrollbar lol
This is what I'd call 'advanced' web designing because to achieve this would require on my part, extensive 'tinkering and experimentation' with snippets of other peoples of code and also trying out things myself from the php manual heh
thats how I learn. Of course I understand some of the easy-moderate level stuff, but then when things get messy or a little too complicated i look at tutorials on the web for assitance etc.
So basicaly, on the main page I have DIV 1 and DIV 2, and DIV 2 will display the consultants by name, ive already done a simply test to see if i could use php inside that particular div class , and it works. So basicaly inside the DIV class - ive embedded my php script, which connects to my mysql database, and does a simple select * from table query.
the results are outputted neatly but go OVER and BEYOND the DIV box boundary (basicaly exceeding the height at thebottom of the div 2 box)
im wondering if its time to brush on my ajax, or is that something irrelevant in this affair ?
it gets comlpicated though when you find snippets of other ppls code and attempt to 'integrate' and 'stick' it in between your own code...especialy when you've already got php scripts running inside div tags : ))
oh and i've got forms INSIDE my divs too - ive succesfully created the 'Add Consultant' form, simple text box with a Add Consultant button - you enter the name and just click that button, and that consultant is added into the Consultants table - i check in PhPMyAdmin - and sure enough, the new consultant has been added - sweeeeet ! ^_^
yeah so cmon you lot - few pointers, tips, hints, advice on how to achieve what im trying to achieve ?