- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Worker.
- Interests
- Programming, Linux Administration, Python, OGRE, SDL
- PC Specs
- Loaners for the win
34 Posted Topics
Re: [QUOTE=;][/QUOTE] I prefer linux myself. However, I recognize the fact that applications, games especially, require programmers. So in essence projects to produce windows app equivalents use the momentum of the contributers of source code, not the average non programmer who wont use linux because app xyz isnt supported. Sadly most … | |
Re: Most of the time when I need to enter true or false for INSERTion into a database, I use the value to define the variables for complex queries. [code=html] <form action="ha.php" method="post"> <input type="text" length="20" maxlength="32" value="username"> <input type="checkbox" name="understood" value="true" /> <input type="checkbox" name="optIn" value="true" /> <input type="submit" value="sign … | |
Re: If you have to do this in the code, you will need to check for the User-Agent request header. Since you will want to minimize the processing on these requests, you will want to consider putting this early in your code to handle the request with a forbidden response or … | |
Re: Looking over this and reading the description of the issue, I am unclear on a couple of points. When you say you only want the select values from a certain form, it's not clear to me which direction you are trying to send this. I only see one form open … | |
Re: I may be missing something, but this sounds like you are trying to update a link on your site's menu to the subdomain. If this is through a CMS, you may be able to update the menu item to link to the subdomain. If this is static HTML files, then … | |
Re: Looking forward to a couple and probably will watch some more just to watch: * [Mekakucity Actors](http://myanimelist.net/anime/21603) * [Isshuukan Friends](http://myanimelist.net/anime/21327) And finishing up Nisekoi. That Bokura wa Minna Kawaisou does look interesting as well. | |
Re: There is also that rare possiblity that you mix assembly and C++ to design assembled modules that can work with the C++ by working the code to use those modules. But for that you have to have a very good idea of what your doing and when you really need … | |
Re: Uhm, just wondering if you even googled osCommerce. It just happens to be a eCommerce software package under GNU GPL. I am assuming that you didnt know that though, because of all the questions, BTW it does run on php. SO I guess you don't need to learn any new … | |
Well, I just got finished spending a couple hours looking for a solution to an issue concerning the background image. Originally, I was not able to get it even close to the manner I wanted it to work. However I have made it to a decent point. The original idea … | |
Well, for what its worth, I missed you all. For those in the know Ive been down (read offline) for about 2 and a half years. The majority of my activity was on the late night irc. Im still not on a machine yet as Im only halfway home (pun … | |
Re: Hello, I am actually quite interested in this code, but I do not have that much experience with php. I was wondering if I wanted to access an https page that recieves post vars from a form, if I could use the $_POST['']= to setup the vars. I was wondering … | |
Re: I just got through reading this entire post from start to fin. Cool topic surfing somehow all related by strands.... | |
Hello, can anyone help me figure out what is wrong vmplayer. I cannot access the server running as GUEST OS on Fedora8 vmplayer HOST OS. I will look into this some more. I am using it as a web development platform. I can access the internet and even the HOST … | |
Hi, just wondering if anyone had any new ideas on a plugin for Pidgin to enable video and voice. One of the problems is the way the data is used by each protocol. I figured that mplayer is a capable backend to display sounds and graphics from various formats. This … | |
Re: You could use a hidden form and javascript onchange submit to allow the code to assign the values to the cookie session and code the page to check the session for checked value. Maybe there is an easier way..... Let me think about it some more..... | |
Re: Hmmm, I usually enclose all attributes in ""s in html elements. E.g. type="text" name="passbox". Also another thing is the this.form you are passing to the function. I don't know for sure if that would pass what you want because the form is the parent of that particular element. Another words … | |
Hello everybody, I was just trying to understand why IE 6 displays this horizontal menu offset to the right some. I think it will display properly in IE7, and I know for a fact it shows up the way I want in Mozilla/Firefox. Basically I wanted the menu to be … | |
Re: I haven't tested it out but you can try this am assuming this is what you are asking. [code=javascript] function getCode(password){ var code=""; for(var count=1; count<=password.length-2;count++){ code+="*"; } return code; } [/code] You could then just call the function to assign the string to whatever. I think you could even … | |
Re: From what I have read, I think what you want to know is that mysql_fetch_array($result) returns an array if the mysql result had at least one row. It will return false if there was no row of data from the query. The first $row=mysql_fetch_array($result) assigns either false or an array … | |
Re: Excuse me if this thread is dead, but I was just wondering did the client(The Chicken Palace) have their own shopping site? I mean to ask, does the "The Chicken Palace" have their own shopping cart system? If they do, I think it could be possible to provide an interface … | |
Working on a function that prints out all database rows that end with _n where n is single digit number 1 - 9 first and then prints rows that do not end in _n. So far I have been trying to use this code [CODE=php] $theQuery="SELECT * FROM tableContent" while($row=mysql_query($theQuery)) … | |
Hello folks, I was wondering if anyone had any experience with php configured with pdflib. I am trying to create a new pdf by loading an already existing pdf and overlaying some information where the fields would be on the existing pdf. I have been trying to figure this out … | |
Re: As a newbie to PHP programming, I think that it is better that the examples here are not shown in a class format. I feel that if someone who is genuinely interested in understanding PHP like myself, would be able to use the working code and make a class out … | |
Re: Be sure that the pages processing the information check to make sure they are in a https:// and not standard http:/. Just have this code at the beginning of any page requiring the secure connection. [code] <?php if(!$_SERVER[HTTPS]){ $page="https://"$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; header('Location: $page') } ?> [/code] I think. :P | |
Hello Everyone, I was trying to figure out why this particular mysql_query() doesn't return false and how to deal with it. First of all, I have a table (call it table1) with only one row in it. The one row has a 2 in the user_id column. So when I … | |
Hello everyone, I have an issue that I can't seem to resolve with integrating phpBB into the rest of my site so that login and session can be intact. Well, for the most part, the whole scheme seems to work at first glance. I noticed that pages that have the … | |
Brief overview, have three functions that return boolean for the zip code and email format and another to check if two fields are not empty and contain the same value. The wrapper functions I made that use another function to write to a div.innerHTML work fine. The function I made … | |
Re: You could try to write a function that will check each field for correctness and then use the form id to submit it with javascript. Instead of having a submit input use a button instead that onclick calls the function. [CODE] <script type="text/javascript"> function checkThenSubmitForm() { <!-- form checking instructions … | |
Re: Are you talking about getting the data from the user in the webpage? If you are, then you can use a form. Depending on the method of the form wether it is post or get, Just set the action to the php script that will enter into the database and … | |
Re: I was wondering if you could do an iframe that will refresh and use css to position it where the you want the conversation to go. Most browsers handle iframes ok but I think that could still become an issue. I don't know if the iframe would be able to … | |
Ok, so I am working on a simple layout for what I would like to recycle for several purposes. As usual, the code works like a charm in FF but doesnt work exactly the same in IE6. I havent even tried it in IE7. Anyhow, I was trying to get … | |
Re: I found a link about what you are talking about, I think. [url]http://www.freerepublic.com/focus/f-news/1387017/posts[/url] and this one too more than likely [url]http://en.wikipedia.org/wiki/LIGO[/url] I dont know wabout the quality of the info but I thought it was interesting.. | |
Hello everyone, was wondering if any of you might happen to know something that can help me. I've been searching the net for a way to get GNOME to change its resolution from a script. I can call gnome-display-properties but that pulls up a gui. Basically I am writing a … | |
Re: Alot of code that called the BIOS still works, so to that level you got some basic platform compatibility, but then you end up thowing in code to use anything at the full hardware capacity. Then you could always include an assembler coded compiler and have most of the code … |
The End.