- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 10
- Posts with Upvotes
- 9
- Upvoting Members
- 9
- Downvotes Received
- 9
- Posts with Downvotes
- 9
- Downvoting Members
- 6
"You never stop learning." - Quote by OmniX
I know the dos command is "shutdown" then with your parameters of "-s -t xxx" etc. Anyways so "How to shutdown your computer using C++?" Thanks, Regards X | |
Re: Here is the solution to your problem. All your problems lie in the if statement, without nav's idea I wouldnt have figured out to solve this as I have been trying to figure it out for days but once I saw nav mention the $_POST it was all downhill. The … | |
Re: Additional questions, What if you used mod_rewrite to remove the whole filename? If you did this what would have to $_GET variables? Just wondering, Thanks! | |
I have multiple columns I wish to order by. I have columns: # # # # (1, 2, 3, 4) A 0 0 0 0 B 1 0 1 3 C 1 0 2 3 I want to ORDER BY 4, 3, 2, 1. Syntax I am using: [code] "SELECT … | |
I have a webpage that I wish to remove the scrollbar from. I know this is possible with frames as scrolling="no". But just from my single page I would like something small and easy to remove the scrollbar prefer something like <body scrolling="no"> Thanks, Regards X. | |
Confirmation really If I want to import a single page into a webpage i would use iframes. If I wanted to breakup a webpage into several webpages I would use frames. This correct? Also could someone provide simple and clear examples of each so I can get a feel of … | |
I saw one of these and looked very effective and professional. So how do I make one? Any tutorials? Thanks, Regards X | |
Due to the compability between PHP and MYSQL I am hoping someone has a solution to my problem :( I wish to reset the auto increment field and get them "redone" as such. Problem being: When I delete a row it leaves an incorrect auto increment, as a total as … | |
When using this HTML code: You get a rectangle where the location is stored, and a button labelled "Browse..". I would like to redesign the "Browse.." button and I was told this would have to be done using mainly javascript and abit of css (I thought it would be the … | |
I have tried to research this and im always running into old articles. What I have come across are (possibly more): md5, sha1, hash, crypt and mcrypt Now I have used md5/sha1 before and have 32/40 character long strings the others I dont know too much about but in short, … | |
Everytime I start this application, it automatically closes. Does anyone have any ideas how to solve this problem? Thankyou, Regards X | |
Re: You are asking for a form post variable $_REQUEST['post'] nothing to do with a column in the static_page. | |
Anyone know the difference between the two or the pros and cons? Thanks. | |
I am trying to see the restrictions of $_GET global variable and when I use the URL localhost/test/test.php?abc.def I am getting the variable abc_def in the global variable $_GET, any ideas? Any other restrictions? | |
Hi Everyone I was just wondering what would be the cost of average website (images/text/etc) that contains frames and 15 webpages which incorporates HTML and CSS and minor FLASH? Then seperately how much would it cost if it was connected to a database using PHP and MYSQL. The database would … | |
Re: Why not just reload the page using a submit button (most likely the same one you used to add the new records)? [code=php] <form method="post" action="<?php $_SERVER['PHP_SELF'] ?>"></form> [/code] | |
| Re: Do you know how to preform a database query? setup a connection? If not you need to check out ww.php.net for some uide lines and where to start like mysql_connect, mysql_query, etc. If you do, then i cant see any database manipulation in your code so... Well either way thats … |
I have a starting base and I had the idea of using an array name similar to the checkboxes where you would use checkbox[] and let it repeat through a for loop, in this case file[]. But when I go to access it via $_FILES['file[$index]']['name'] it errors. I think there … | |
Yes I know you are not able to refresh in php, but insert meta tags into an echo statement that can refresh, or use javascript, etc. The problem is I have tried all these solutions and it still does not work. :( So I will tell you my problem and … | |
Hi People I have a url, [url]http://www.domain.com.au/domain1/domain2.php[/url] . Now I would like to remove the middle man aka folder from ever being seen so the url changes to, [url]http://www.domain.com.au/domain2.php[/url] . I have done some research and mod_rewrite looks to be the go in the htaccess file. So can anyone give … | |
Hi People The Problem: [url]www.1.com/2/3.php[/url] > [url]www.1.com/3.php[/url] I want to change permently so you never see the folder named "2". I thought this would be possible through the htaccess file or web hosting server? So using mod_rewrite or changing the host directory of your server to www/2/ instead of www/? … | |
FF works perfectly (additional browsers also) but IE (the bain of microsoft) refuses to be the same. Any ideas or other techniques or position I can look at? [code] background-image: url(text.jpg); position: abosolute; left: 100px; top: 100px; [/code] Same code different 100x100 :( Any Ideas? Thanks, Regards X | |
[link]http://php.net/manual/en/function.isset.php[/link] Clearly states that "isset — Determine if a variable is set and is not NULL"? I have been trying to use isset() to check values for NULL and it still appears yet when I use != NULL then it works. I think the fine line is in various instances … | |
I was trying to play a powerpoint presentation(.ptp & .ptpx - I think that is the old and new extensions) and get it to play once it has been uploaded. Now im 80% sure but I remember seeing a powerpoint presentation being played through a browser a year or so … | |
Hi Guys I have been using the DIRECTORY SEPERATOR and from time to time i get a %5C instead of the appropriate / or \ now. Any ideas what is the problem? Thanks, Regards X | |
Hi People I would like to know how exactly to setup the links you see below that are attached to the article so send to digg, facebook, etc. Also what is the offical term for these links? special links? special tags? ??? Thanks, Regards X | |
Re: Im not sure but I think you cant send mail from a home made server like apache, etc. I guess if you wanted to you might have to hand out some cash and make your localhost a full fledge server, which you may or may not be inclined on doing. | |
SEO has been asked again and again and again as I know. I just wanted to bit thrown into the BEST direction (inparticular google then yahoo, etc) of what is the best coding techniques to allow your website to contain the best SEO it can. Like Ive read many articles, … | |
Does anyone know or can direct myself to a php audio character output? For example if i code this and outputs it not only visual but audio also. [code] $abc = "ABC"; echo $abc; // or even $a = "A" $b = "B" echo $A . $B; [/code] You get … | |
Re: go to [url]www.php.net[/url] for all the little bits of information. In short you have a host/database/username/password. you user mysql_connect(host, database, username, password) then start using mysql_query and mysql_fetch_array for retrieving info |