Forum: Upcoming News Stories Nov 15th, 2005 |
| Replies: 3 Views: 3,410 Google Desktop Search seems to me a superior product, and also allows the index to be encrypted at a user's option. |
Forum: *nix Hardware Configuration Jun 13th, 2005 |
| Replies: 9 Views: 20,279 Oh, and, I switched to a DVB-T card ages ago. |
Forum: *nix Hardware Configuration Jan 16th, 2005 |
| Replies: 9 Views: 20,279 Well, I've searched Google to little avail so I've decided to ask here.
I've currently set up a Media Centre PC in my room. Everything - even wireless LAN - works perfectly after several kernel... |
Forum: PHP Dec 10th, 2004 |
| Replies: 12 Views: 43,194 What exactly are you trying to do? Surely this is a problem for the client interface, not the server? |
Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2004 |
| Replies: 8 Views: 15,248 A criminal offence in most countries, that is.
Though, obviously, obtaining stolen goods (which is essentiall what you'd be doing) is probably a criminal offence where you are as well, unless... |
Forum: Posting Games Nov 22nd, 2004 |
| Replies: 7,595 Views: 661,672 |
Forum: Geeks' Lounge Nov 21st, 2004 |
| Replies: 31 Views: 7,073 Cool.
I knew that I'd forgotten one; Safari. |
Forum: MySQL Nov 20th, 2004 |
| Replies: 1 Views: 12,563 It would be helpful if you were to provide the error returned, or a description of what's not working correctly. |
Forum: PHP Nov 20th, 2004 |
| Replies: 1 Views: 2,421 The second way will be quicker and easier.
You can use SQL to connect to you DB and search and sort, for example:
SELECT *
FROM userData
WHERE user_age > 30
AND user_type = 'NORMAL'
ORDER... |
Forum: Geeks' Lounge Nov 20th, 2004 |
| Replies: 31 Views: 7,073 Anyone else here voting, or is everyone else browserless? ;) |
Forum: PHP Nov 19th, 2004 |
| Replies: 1 Views: 2,637 Half the commands are commented... |
Forum: Geeks' Lounge Nov 19th, 2004 |
| Replies: 31 Views: 7,073 This is unlikely to be the first thread of its kind and nor the last, but with the recent release of Firefox 1.0 final, it would be interesting to see how the current browser line up is.
... |
Forum: MySQL Nov 19th, 2004 |
| Replies: 1 Views: 3,604 PHP won't be interpreted on a MySQL server.
PHP scripts are interpreted on a PHP server, which may also be a MySQL server.
In any case, you may be aware that generally, a PHP script executes... |
Forum: MySQL Nov 19th, 2004 |
| Replies: 2 Views: 4,768 THere is a bult-in form creation wizard in Access. This will obviously limit data entry and retreival to one computer or possibly multiple clients on a LAN.
If you need remote Web Access as you... |
Forum: Posting Games Nov 18th, 2004 |
| Replies: 7,595 Views: 661,672 |
Forum: Posting Games Nov 18th, 2004 |
| Replies: 7,595 Views: 661,672 Um, right... Moderator?
Gossip > Talk |
Forum: PHP Nov 14th, 2004 |
| Replies: 4 Views: 14,233 Ah, calm down. The problem is that $HTTP_ x _VARS isn't enabled in PHP5. Ya need to change your php.ini file settings. |
Forum: PHP Nov 7th, 2004 |
| Replies: 6 Views: 2,708 PHP is a dynamic programming language. It, for example, generated the page that your are viewing now. |
Forum: PHP Nov 4th, 2004 |
| Replies: 3 Views: 10,899 You can't AFAIK.
Certainly not if the USB scanner is on a client machine rather than a server.
Moreover, I've never heard of an extension to do this.
If you merely wish to use the barcode... |
Forum: PHP Oct 30th, 2004 |
| Replies: 7 Views: 4,547 WHy do you need the number of rows? |
Forum: PHP Oct 25th, 2004 |
| Replies: 3 Views: 13,633 In a loop, the break and continue keyworks work as in C; however, for IF I am not certain. Best to try them out and see what works, or check www.php.net |
Forum: PHP Oct 25th, 2004 |
| Replies: 2 Views: 3,319 Yes; you can either do:
include("/home/.sites/88/site213/web/test_server/events1/web/ssi/{$pageName}_secondarynav.htm"); or include('/home/.sites/88/site213/web/test_server/events1/web/ssi/'... |
Forum: PHP Oct 21st, 2004 |
| Replies: 7 Views: 4,175 Actually it will. It's a valid result handle, irrelevant of its contents. |
Forum: PHP Oct 20th, 2004 |
| Replies: 7 Views: 4,175 Are you syre that the query is returning a result? |
Forum: PHP Oct 20th, 2004 |
| Replies: 7 Views: 6,855 Ah, I wasn't aware of this... |
Forum: PHP Oct 20th, 2004 |
| Replies: 7 Views: 4,175 while ($type_row = mysql_fetch_array($sql_event_type_result)){
Should this not be as below? (mysql_fetch_array to mysql_fetch_row)
while ($type_row = mysql_fetch_row($sql_event_type_result)){
... |
Forum: PHP Oct 19th, 2004 |
| Replies: 6 Views: 3,865 Sorry, what? I'm not quite sure what you mean there.
Unless your PHP.ini file has been explicitly modified to do this (register_globals = on), $_GET['page'] will NOT be the same as $page. $_GET is... |
Forum: PHP Oct 19th, 2004 |
| Replies: 7 Views: 6,855 But why would that in anyway affect the variable? I mean, all you are doing by using "$context" is saying to PHP:
I'm typing some text here, feed this into the parser. If you find any variables,... |
Forum: PHP Oct 19th, 2004 |
| Replies: 19 Views: 7,156 To YoungTrek: I can't see any problems with the code, but then I don't tend to use the mysql functions directly. Try it out, see if it works.
As for MarCarNar, I'd suggest that you get a good grip... |
Forum: PHP Oct 18th, 2004 |
| Replies: 6 Views: 3,865 That is not the problem, at least with regard to the error specified. The problem is that you think that by visiting mysite.php?page=2, the variable $page will be set to 2. In the majority of... |
Forum: PHP Oct 18th, 2004 |
| Replies: 7 Views: 6,855 Why bother enquoting $context in the include statement? Just slows down the parser... |
Forum: PHP Oct 13th, 2004 |
| Replies: 2 Views: 9,303 Storing a picture in a database is generally a bad idea... they are usually designed for fast retrieval operations of small bits of data, not saving massive picture files. |
Forum: PHP Oct 10th, 2004 |
| Replies: 3 Views: 34,398 The website that told you to use $PHP_SELF is severely out of date. Instead, use $_SERVER['PHP_SELF'] |
Forum: PHP Oct 10th, 2004 |
| Replies: 4 Views: 14,014 It has to end in .php to be parsed by the PHP engine, change your file name back to PrintInfo.php.
The HTML code (within the PrintInfo.php code) will not be analysed by the PHP parser, bnut... |
Forum: PHP Oct 10th, 2004 |
| Replies: 19 Views: 7,156 Well you'll have to tell me what level of experience you have... for example, would you recognise what the hereafter inserted code block does?
<?php
echo 'Hello, world!';
?> |
Forum: PHP Oct 9th, 2004 |
| Replies: 19 Views: 7,156 Not exactly....
a) $HTTP_POST_VARS are out dated, use $_POST now; and
b) If you use comments to show things in REAL code, people will pick up what you're doing far faster than if you confuse them... |
Forum: PHP Sep 24th, 2004 |
| Replies: 2 Views: 50,855 Or, if you (very wisely) do not have auto_globals enabled, then $_SERVER['PHP_SELF']. |
Forum: Windows NT / 2000 / XP Aug 9th, 2004 |
| Replies: 2 Views: 5,928 Really.
Hmmmmm. Does anyone else find it odd that Microsoft would release an egarly awaited service pack to a thrid party site before its own? |
Forum: PHP Aug 9th, 2004 |
| Replies: 9 Views: 4,226 require("$content");
This'll work, but it's a waste of the script interpreter's time:
require($content);
This is faster. (Without the double quotes this time - the double quotes tell the... |
Forum: PHP Aug 3rd, 2004 |
| Replies: 3 Views: 5,197 A mistake I made was to assume that the PHP woukld work just by double cliking the file or opening it in its directory. You need to visit
http://localhost/path/to/your/file.php |