Search:
Type: Posts; User: devel95
Search :
Search took 0.08 seconds.
Ok, you got it...config.inc contains your make_query() function.
I will try to take a look (and maybe other viewers will do the same) but it is nearing the end of my day here so I may need to...
Ok.
I think your requirements might be complex. We could easily chew up this forum thread with a lot of back & forth posts -- but I feel that based on your initial issue, I have offered a solution...
Honestly, I am hesitant to download anything foreign (like this) for risk of damaging my machine.
Can you extract and post your make_query() function? Just the part that does the connection to the...
Ok, I think this is a bit bigger/different than what was initially posted.
Let me see if I understand what you are after -- are you saying you want to be able to enter "thisname.php" in your...
No, that doesn't do it. I was hoping to see your submit form and walk through the process. It is going to be hard for me to troubleshoot. Are you able to use "echoes" to put check points into your...
:) I would like to know the full URL (include domain) so I can walk through it myself.
What, a white page? Did you turn on error display? And still a white page?
Can you reveal the URL (or PM me with it.)
Someone on StackOverFlow helped me solve. See http://stackoverflow.com/questions/3998722/how-to-sort-a-multi-dimensional-xml-file
Show us a copy of your make_query() function. Is that where you are connecting to your database?
You probably got the white page as a result of your submit button test.
Make this little change to your script for testing purposes:
}// end of it statement for 'results found'
echo...
Ok, copy and paste your current code so we can have a look.
And, throw this in at the beginning of your PHP Script (and in any script going forward). It helps you to see warnings and errors that...
Please provide more snippits of your code, especially the query select statement(s).
Yes, that's right. Now you just need to address the imbalance of curlies "{}". You have one too many unclosed curlies originating in your upper section of code. It's the one dealing with the...
(1) In your recent post you have a "PHP Code" section, then an "HTML Code" section and finally another "PHP Code" section. I want to make sure you have each of these 3 components of code contained in...
You have a square bracket paste in your code in this thread. Is that in your php flle as well?
Also, your solution is to be contained all in 1 file (your PHP script file) and not separated into 2...
If I understand your requirement and assuming your sql query works correctly, one way you could do would be like this:
if ($expiration_date < $today) { ?>
<HTML><HEAD>
</head>
<frameset...
I have tried to get an XML file to sort and have had no luck. I need some help from an expert. Thanks.
My XML File (shortened for the example):
<?xml version="1.0" encoding="iso-8859-1"?>...
I have one minor issue remaining with my navigational menu -- then it is finished.
If you look at http://wheatfield.ny.us/ the search box has a background image representing the submit button. I...
Thanks "letmehaveago". My issue was the gap between the list items and your css corrected. much appreciated.
letmehavago,
I have another issue to solve with my css.
If you logon to http://wheatfield.ny.us/ you will see a utility menu in the upper right corner side of the page with links "Site Search |...
Hey "letmehaveago" !!
You did what no one else on StackOverflow or Web Developer Forum could do -- you solved my IE7 issue. You're awesome and I thank you so very much.
Quick question just from...
It happened because the <br> tag is a line break which results in a slight line advance. So it ends up that it will push the next div container down.
To solve that, because you do need to clear...
The <br clear="all" /> is necessary because you are "floating" your list items <li> in the nav.
You will need to account for the paragraph in the content id section
#content p {
margin:0;
border:0;
padding:0;
}
Tweak or adjust as you need.
I have a CSS drop down menu (with a small footprint of javascript to accommodate IE 7 and below). This menu works absolutely perfectly, as designed, in every browser except IE7. It's the suckerfish...