Forum: PHP Jan 26th, 2009 |
| Replies: 14 Views: 2,015 See if changing header("Content-Disposition: attachment; filename=$name"); to
header("Content-Disposition: attachment; filename=" $name); works for you. |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 Try:
define ("base_url", "http://mysite.com/login");
$link = base_url . 'activate.php?x=' . urlencode($e) . "&y=$a"; |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 Never mind, I found the answer...
define("base_url", "http://foo.com");
$filepath = base_url."/foo.gif"; |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 Try changing all instances of BASE_URL to $BASE_URL and see if that works. |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 like BASE_URL="http://www.mysite.com/login"; |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 I need to see the actual code line, sorry. |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 What does BASE_URL equal? Can you put in that line of code? |
Forum: PHP Jan 21st, 2009 |
| Replies: 14 Views: 633 Your problem is BASE_URL. It isn't in a usable format. It needs to look like a variable. |
Forum: MySQL Sep 1st, 2008 |
| Replies: 2 Views: 694 If there are no errors but no results are displayed, check your code that displays the results. Chances are you aren't seeing the results because you don't have an "echo" statement to display them.... |
Forum: Windows Servers and IIS Aug 18th, 2008 |
| Replies: 3 Views: 1,423 Is there an index.htm or default.htm under C:\Inetpub\www ?
If not, put one there and see what happens. |
Forum: Networking Hardware Configuration Jul 19th, 2008 |
| Replies: 2 Views: 1,341 Do you have a router, cable modem, etc. at your office? You would need to know the setup before you would know how you can connect in.
If it is Windows, terminal services via remote desktop... |
Forum: Networking Hardware Configuration Jul 19th, 2008 |
| Replies: 2 Views: 806 Remove the device in Device Manager...in Safe Mode if necessary. Power it off. Power it back on and let the PnP subsystem do its thing and redetect it. Offer it drivers if necessary. This may take... |
Forum: Visual Basic 4 / 5 / 6 Jul 19th, 2008 |
| Replies: 2 Views: 3,016 Look in your Access database. Check the attributes of the fields for the columns...check allow NULL values. This should solve it. Then you can insert a NULL value easily. |
Forum: MS SQL Jul 11th, 2008 |
| Replies: 8 Views: 1,209 You can easily join two queries with the UNION keyword between the two individual SELECT queries:
SELECT xxxxxx UNION SELECT yyyyyy |