Search found 12 matches
- Thu Jun 08, 2006 5:29 am
- Forum: Databases
- Topic: WHERE col = NULL ?
- Replies: 9
- Views: 1210
- Thu Jun 08, 2006 5:21 am
- Forum: Databases
- Topic: how to control the line displayed when using group
- Replies: 1
- Views: 258
how to control the line displayed when using group
ill make a basic form of the query im doing to make it easier for readers query select * from job group by company order by RAND() limit 10 the problem is the query shows only one entry under each company, for example company ABC have two job record only one of those job are always showing. is there...
- Tue Jan 31, 2006 2:06 am
- Forum: Databases
- Topic: Is there a way to reduce loading time by just editing query?
- Replies: 8
- Views: 707
yup, INDEXED userId searchLocationId jobCategoryId datePosted resumeTitle resumeText cityLocation stateLocation and FULLTEXT fulltextresume resumeTitle objective jobTitle1 jobTitle2 jobTitle3 resumeTitle there are 30000 entries, and what im thinking right now is probably make a new database with all...
- Tue Jan 31, 2006 12:55 am
- Forum: Databases
- Topic: Is there a way to reduce loading time by just editing query?
- Replies: 8
- Views: 707
Is there a way to reduce loading time by just editing query?
Well here is a code that takes 25seconds to load and is reported to take 11 seconds to load on the phpmyadmin SELECT activeResume.resumeId, Resume.datePosted, Resume.resumeTitle, Resume.cityLocation, Resume.stateLocation, Resume.userId, JobApplicant.name, JobApplicant.currentJobTitle, JobApplicant.s...
- Mon Sep 26, 2005 2:21 pm
- Forum: The Enterprise
- Topic: Question to people who has expreience with job contracts
- Replies: 5
- Views: 6435
- Mon Sep 26, 2005 1:19 am
- Forum: The Enterprise
- Topic: Question to people who has expreience with job contracts
- Replies: 5
- Views: 6435
Question to people who has expreience with job contracts
Hey guys I recently am in contact with a person who wanted me to make a recruitment solutions website, like a job finder site, and he wanted me to make a proposal stating how long it would take to finish and of course how much. so thats my question, how long should it take me to finish it in a proff...
- Wed Sep 21, 2005 10:27 pm
- Forum: PHP - Code
- Topic: help how to check if a variable can be found inside an array
- Replies: 2
- Views: 208
- Wed Sep 21, 2005 10:13 pm
- Forum: PHP - Code
- Topic: help how to check if a variable can be found inside an array
- Replies: 2
- Views: 208
help how to check if a variable can be found inside an array
Code: Select all
if ($var1==$orient_array['border']['0'] || $orient_array['border']['1'])- Thu Jul 21, 2005 12:12 am
- Forum: PHP - Code
- Topic: how i can edit a particular news post in my view news page
- Replies: 3
- Views: 456
- Wed Jul 20, 2005 11:54 pm
- Forum: PHP - Code
- Topic: how i can edit a particular news post in my view news page
- Replies: 3
- Views: 456
how i can edit a particular news post in my view news page
<?php if(isset($_POST["n_submit"])) { ?> <TABLE class="FORMAT" width="80%"> <tr><TD class="lhead" width="100%" colspan="2"><a class=white><center> Welcome Administrator/Moderator </td></tr></center></a> <tr><TD class=light ><center> <a cla...
- Thu Jun 16, 2005 3:57 am
- Forum: PHP - Code
- Topic: registration submit button dont work also w/ variable error
- Replies: 4
- Views: 285
fixed
thanks phpscott, the lines that have variable errors are the ones linking to the html "post". like this one $un = $POST['username']; [/i] i fixed it by just placing another $un = $POST['username']; [/i] at the start of the page before the isset(). im just wondering why they dont work now, ...
- Tue Jun 14, 2005 11:44 pm
- Forum: PHP - Code
- Topic: registration submit button dont work also w/ variable error
- Replies: 4
- Views: 285
registration submit button dont work also w/ variable error
a simple registration form when i load this from a web page, it does nothing when i press the submit button. i tried to use it at home on a winxp pro w/ php-5 and mysql and i edited the php.ini file so i could see more errors (i unquote the line thats shows all kinds of errors and notification) the...