Search found 12 matches

by x
Thu Jun 08, 2006 5:29 am
Forum: Databases
Topic: WHERE col = NULL ?
Replies: 9
Views: 1210

Weirdan | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] im not...
by x
Thu Jun 08, 2006 5:21 am
Forum: Databases
Topic: how to control the line displayed when using group
Replies: 1
Views: 259

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...
by x
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: 708

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...
by x
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: 708

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...
by x
Mon Sep 26, 2005 2:21 pm
Forum: The Enterprise
Topic: Question to people who has expreience with job contracts
Replies: 5
Views: 6436

great info from the link, thanks
by x
Mon Sep 26, 2005 1:19 am
Forum: The Enterprise
Topic: Question to people who has expreience with job contracts
Replies: 5
Views: 6436

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...
by x
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

it worked, thanks a bunch Master! im sorry if i had to post this simple question im just running out of time to fix this thing im doing. wont let it happen again!! :D
by x
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'])
i dont know why this code wont work, the array($orient_array[border])has values that spans from 1-19 but doing this kind of if statement results to true even if i change it to !=. can anyone help me? :oops:
by x
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

although that would mean i will use a different page and not the same page, ill experiment on it

"problem solved man, thanks for the fast reply and patience"
by x
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...
by x
Thu Jun 16, 2005 3:57 am
Forum: PHP - Code
Topic: registration submit button dont work also w/ variable error
Replies: 4
Views: 286

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, ...
by x
Tue Jun 14, 2005 11:44 pm
Forum: PHP - Code
Topic: registration submit button dont work also w/ variable error
Replies: 4
Views: 286

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...