- Upvotes Received
- 7
- Posts with Upvotes
- 5
- Upvoting Members
- 7
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
"Things are only as good or bad as you make them out to be."
If you smell something, it's me...cuz I'm the shiz..
- PC Specs
- Intel 3570k, Nvidia 660GT, 8 GB RAM, OCZ Vector 128 GB, OCZ Vertex 2 64 GB
57 Posted Topics
Re: Try this on your logout page -- session_start(); mysql_query("DELETE FROM online_users WHERE username = '" . $_SESSION['username'] . "' "); session_destroy(); I know this may sound obvious, but did you make sure that you executed your query BEFORE calling the session_destroy()? | |
Im having problems getting this to work.. What I need to do is scan a directory, and search for all images that belong to the member. Here's the basic process: 1. A member uploads a photo 2. If accepted, the photo is automatically renamed by appending the member's name as … ![]() | |
Hey guys I am grabbing URLs from the database. Then with each URL, I need to open that file, and only display the contents between <h1> tags and discard the rest. -- IMPORTANT -- I do not want to actually remove everything else from each file, I simply want to … ![]() | |
Hey guys, Here is what I am trying to do: I would like for a visitor to enter a zip code, and when zip code is entered, a select field would be populated listing all the cities for the corresponding zip. I already have everything set up and working other … ![]() | |
Good morning all I'm having a problem with injecting a class into the constructor of another class. I am creating an MVC framework, for learning purposes. In bootstrap.php, it loads the various classes needed, and also instantiates a few classes Code snippet for bootstrap.php below. <?php /** * file: /system/core/Bootstrap.php … | |
Re: < 2 GB RAM is a definite issue. Get another 1 - 2 GB if you can afford to do so, it will make a world of difference. Everyone seems to have done a good job of pointing out the other potential issues. Good luck! | |
Hi all, What I am trying to accomplish is this: 1. User submits form 2. PHP checks the form for any words that begin with the '#' hash symbol 3. If any words beginning with # are found, php checks database to see if it already exists What is the … ![]() | |
Hey guys, here is the table structure: Table name: globalsettings column names: setting, value, description An example query could be this: $query = "SELECT * FROM globalsettings WHERE setting = 'name'"; Okay, so here is what I am trying to do (I am using PDO for DB activity, but just … | |
Hey all, What I am trying to do is create a search by zip code form. When the form is submitted, it will search for members in nearby cities within the given radius. For example, I submit a form saying find me all members within a 20 mile radius of … | |
Hi all, I'm pretty new to jQuery, and have no idea where to start with this issue that I am having. What I am trying to do is this: On my website, members are allowed to send messages to each other. What I would like to happen is that when … | |
This isn't a question or request for help, I just wanted to stop by again and thank you guys for all of your help! The members here have been very patient and knowledgeable while helping me through issues, and I have learned very much in my time here so far. … | |
Hi all, I'm currently putting together a search engine for my website, and so far, everything is going pretty smoothly. The only thing left that I would like to do is when the search results are displayed, I want to be able to highlight the search term entered in the … | |
The title may be a bit confusing, but here is what I am trying to do.. I have three different <select> fields, named city, state and zip code. What I would like to do is have the visitor choose a state from the first <select> field. When they choose their … | |
## A quick overview: ## After the login form is submitted, it is handled by a seperate file, which checks the form and sets session variables if the login was successful. The script works fine...it will log me in, and redirect me to the proper page as well as set … | |
As the title suggests, I created a base class named **member** which I want to use to get some basic information, but for some reason, I cannot seem to access those methods/values from the child class named **user_send_message** Here is the complete code that I have made so far -- … | |
Re: I think this small change might work for you: [CODE]if (isset($_POST['status'])){ //do stuff } [/CODE] The textarea wouldn't be populated unless the submit button was entered ... probably not the ideal solution, but should work | |
Re: Instead of [CODE]$check=mysql_query("select * from registered where username='$username' AND password='$password'");[/CODE] Try: [CODE] $query = "select * from registered where username='$username' AND password='$password'"; $check = mysql_num_rows($query); [/CODE] | |
Hi all, Basically, here's what I'm trying to do. I have a DB table called [B]products_ssd[/B]. This table contains the columns named: - id - manufacturer - item - description - price - size - pic This table contains the information for SSD drives, from varying manufacturers. Now, to the … ![]() | |
Hi.. this is not a "which is better" thread, although if you happen to have a reason for thinking so, please share your thoughts. First I just want to say that I do not want to have any flame wars or arguments or anything like that. Please keep emotional arguments … | |
Re: [QUOTE=jose456891;652514]I used to be a PC guy. The reason i converted to macs is because one day i decided to try out leopard on my PC. I researched how to make a PC run OS X. Finally one day I found out how to make a hackingtosh. Hackingtosh is a … | |
Re: Personally, once you are very comfortable with HTML/CSS, the next step I would take is to learn JavaScript, and then after that learn PHP. I say that because it would give you a good intro to the more advanced languages without being overwhelming to learn. And also, languages like PHP … ![]() | |
I have resolved a couple issues on my site thanks to you all, and hoping that you can come to my rescue one last time, because I am at wit's end trying to figure this one out. I have a shopping list on each page. Normal grocery store items; users … | |
The title is probably confusing, but here is what I am trying to do and failing miserably at: I want to display all the items from my db table named 'inventory'. Then, a user would select one item by clicking a 'Add to cart' image button. When the button is … | |
Hi all, basically, what I am having trouble with is this: I have a value stored in a table for each member, let's call it $my_value. Each member has a $my_value, which is an integer. What I want to do is as follows... Lets assume I log in as user … | |
Re: Try this, Start > Run > msconfig In General tab, select Normal Startup. That should do take care of the problem... | |
Re: [QUOTE=gaowei;650151]But I think fedora 8 is better than fedora 9 now.[/QUOTE] I have to disagree...the FC9 is much better at hardware recognition and seems to be a little faster than FC8 (my first love!)... But @ the OP, good choice on going w/ Fedora. Very well balanced...easy enough for beginners … | |
Hey guys, Sorry if this is in the wrong section, couldn't find a section for working on batch files. Anyway, here's my problem. I've made a firefox theme, and am distributing it. In order for the theme to work properly, the user needs to copy two files into a directory … | |
Hi everyone, I am having a lot of trouble with this... I am using PHP/MySQL. What I have is a dating website. One of the tables in the database is called "users" which has many fields in it, storing the usual info (id, name, email, etc). What I want to … | |
Re: [QUOTE=forumdude123;548135]RAM is very cheap and can make the difference between a turtle pc and a rocket pc, and I play many games. Also, i want the most future proof configuration out there.[/QUOTE] Well, depends on what you consider cheap....to fill 4 slots with 4GB of memory each will cost you … | |
Re: [QUOTE=patjohnston;717090]The latest trend seems to be creating a niche site. In other words don't reach for a broad audience. If you get traffic from hobbyists or a local area, people will instantly have a sense of community and will begin to look for things that are happening related to this … | |
I just started a site, and would like to make some dummy profiles. The script I'm using included a profile generator that would assign usernames, age and location (city and state) of the "members". The problem I'm having is that the profile generator assigns a city, but not the corresponding … | |
Hi guys, Quick question...I would like to have one of the pages on my website fade into the background after about five seconds, and covered by a semi-transparent layer of solid color, and have a pop up box inviting the visitor to join. Could someone provide me a sampling of … | |
Re: Probably have configuration settings in BIOS incorrect. You can try disabling ACPI, setting your HD to IDE, set Plug and Play OS to "No"... Where does it get stuck at exactly? What is the last file that loads before the install stops? | |
Re: I'm running Ultimate 64 and XP 64 dual boot. Although there are a few serious annoyances that still haven't been ironed out, for the most part I love Vista. If I ever get it running as fast as XP 64, I'll make the switch to Vista full time. | |
Re: What exactly does the error messeage say? And what are your laptop's specs? | |
Re: Just a shot in the dark, because I did this before... Did you make sure to mount the motherboard so that the back of it is not touching the side of the case? The mobo should have came with mounting screws to prevent that from happening, because if it touches, … | |
Hi everyone, Have a strange problem with my dual boot. Vista and XP are both on the same hard drive. Vista is partition C: and XP is partition F: Vista was installed first, then I added XP. Used easyBCD to create a bootloader allowing me to choose which OS to … | |
Re: Generally speaking, the automatic overclock features that most boards offer aren't very good. You will be much better off doing it manually... For example, your processor has a FSB of 200MHz. You can easily raise that to 266MHz and probably not have to touch any other settings; at most just … | |
Re: Intel. AMD is still playing catch up; around the time they bring out their first 45nm processors, Intel will be launching the 8-core Nehalem, which will pretty much make the question moot. | |
Re: Well, no question that Nvidia currently has the best card out there, if you look at their top shelf cards. Not sure which is better for overclocking because I've never had an ATI, but I do know that most of the Nvidia cards are mean OC's. | |
Re: Could be a memory issue.... I've noticed that Vista Home Premium does the same with me often when I run my memory over 1000MHz. If I keep it under that, no problems. I'm sure there's a workaround for this; I just haven't figured it out yet... | |
Re: If anything is faulty, it's the motherboard. But before you send it in, did you adjust any settings, update BIOS, etc...? | |
Ok, this is a strange one... Was running the Fedora 9 live cd, and deleted some stuff off my desktop in Vista. I also was getting ready to play a movie (all my movies are stored on my external drive) while the Fedora installer ran on the Live Cd. The … | |
Re: [QUOTE=bodinga;646141]i have a window vista installed on my system.is it possible to run linux on my system without formatting.i still want to have current documents.my mial is [email]bodingaboyiga@yahoo.com.than[/email]ks for helping.[/QUOTE] Sure... On Start Menu, right click "Computer", click manage, then shrink the volume that Vista is installed on, and assign … | |
Re: [QUOTE=mukeshgoindani;638536]hey guyz, well i am quite new to the geeky thing, i have got a intel 845GLLY motherboard and 256 gb of ram with p-iv 1.8 GHz processor. i need to know that if i can increase my ram to 1 gb, is there be any problem in the performance … | |
Re: Your HSF is fine for a moderate OC; probably go with something else if you're going to push it to the limit. You're probably not getting any responses because OC'ing is such a broad topic. There's no real five minute crash course...and also no one can tell you specific settings … | |
Re: Did you make sure the back of your mobo is not in contact with the panel behind it? The new mobo should have came with riser screws...your mobo will short out on you and not do anything if there is a short. | |
Hey guys, Looking to upgrade my hard drive, and not sure which of these two is faster- [URL="http://www.newegg.com/Product/Product.aspx?Item=N82E16822136260"]This 10,000rpm Western Digital[/URL] or [URL="http://www.newegg.com/Product/Product.aspx?Item=N82E16822332008"]This HP 15,000rpm[/URL] What affects performance most? For example, does the 15k rpm designation mean that it can physically locate (access) any given file quicker than a 10k … |
The End.