Forum: PHP Apr 29th, 2009 |
| Replies: 11 Views: 751 Its definitely E_ALL, my framework automatically sets it to that in development mode. fwrite returns an integer, not false, so there is no error there. (But for some reason it doesn't work)
I've... |
Forum: PHP Apr 29th, 2009 |
| Replies: 11 Views: 751 Dynamic variables are irrelevant to my problem.
Here's where I set $this->error (To clear up any misunderstanding)
$this->load('classes/errorHandler');
$this->error = new errorHandler($mode,... |
Forum: PHP Apr 28th, 2009 |
| Replies: 11 Views: 751 I call this an imaginary error, because the code that causes is never run, and it does not report an error, but the functionality breaks.
I'm developing a PHP framework. I have a debugger that... |
Forum: HTML and CSS Dec 19th, 2008 |
| Replies: 1 Views: 529 |
Forum: PHP Dec 18th, 2008 |
| Replies: 2 Views: 572 You may want to try out a PHP SMTP class, they'll include greater functionality than the mail() function. ... |
Forum: HTML and CSS Dec 18th, 2008 |
| Replies: 1 Views: 529 I'm designing a website for a school project, and I'm having some trouble with IE7. Here's the site: http://caffeol.otherroaddesign.com/
It shows fine in FF and Opera, but in IE7 the sidebar... |
Forum: *nix Software Dec 14th, 2008 |
| Replies: 2 Views: 587 Is there a way to find how much RAM the application is using up (including external libraries), how much RAM in total is being used on the system and how much RAM the system has installed? This is... |
Forum: C++ Dec 7th, 2008 |
| Replies: 2 Views: 339 Wasn't sure where to post this, I couldn't find a relevant forum.
Whats the LGPL and how does it differ from the GPL? |
Forum: C++ Dec 7th, 2008 |
| Replies: 1 Views: 363 How do you embed a file within an application (lets say a text file) and read it with the application?
Also, how do you set an icon for you application? |
Forum: C++ Dec 7th, 2008 |
| Replies: 7 Views: 517 I'm not exactly sure what raw sockets are, but surely sockets libraries like boost.asio still work? |
Forum: C++ Dec 7th, 2008 |
| Replies: 7 Views: 517 Any other possible solutions? |
Forum: C++ Dec 7th, 2008 |
| Replies: 7 Views: 517 Is there a way to make this OS independent? I want to be able to recompile this for windows. Would sockets work? |
Forum: C++ Dec 7th, 2008 |
| Replies: 7 Views: 517 Lets say we have appA and appB. appB is running in the background, not doing anything. Then the user opens up appA. They punch in a number, and hit enter. Then appA "pokes" appB and sends it the... |
Forum: C++ Dec 7th, 2008 |
| Replies: 4 Views: 410 Ah, turns out I wasn't compiling it properly, I needed to include the .o file. |
Forum: C++ Dec 7th, 2008 |
| Replies: 4 Views: 410 Did the changes that you suggested, and now I have a whole new set of errors. :(
Is there some simple example OOP stuff I can look at? Everything I google isn't included in an .h file, and if it... |
Forum: C++ Dec 7th, 2008 |
| Replies: 4 Views: 410 I'm just diving back into C++ after a while of being away. I've created a simple project. But its giving me these stupid errors when I've been trying to do some OOP:
main.cpp
#include... |
Forum: C++ Dec 6th, 2008 |
| Replies: 4 Views: 289 Shared Objects are the linux equivalent of DLLs |
Forum: C++ Dec 6th, 2008 |
| Replies: 4 Views: 289 Thanks! Those look helpful. What about get shared objects (SOs) to work though? |
Forum: C++ Dec 6th, 2008 |
| Replies: 1 Views: 522 Lets say we have a string named "pie" with the value of "do_something". We also have a function with the name of "do_something" Is there a way to call the function with the name of the value of... |
Forum: C++ Dec 6th, 2008 |
| Replies: 4 Views: 289 I did some C++ a few years ago, and now am starting again. One of the first things I am going to try is getting SOs to work. Can somebody recommend some good tutorials for me to get started? (I... |