- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
Everyones smarter I just listen
- Interests
- web design, css, html, php, python
65 Posted Topics
Re: linux will eventually need an anti-virus program hopefully after my time | |
Re: [QUOTE=Pim;542740]I'm using the following code: [code] /*Het middenboxje plus de achtergrond.*/ div.transbox { width: 400px; height: 600px; margin: 0px 0px; margin-top: 25px; background-color: #CCFFFF; border: 1px solid black; opacity:1.00; /*lagere waardes zijn doorzichtig*/ margin-left: 240px; /*anders lopen deze en de links door elkaar*/ } div.transbox p { color:#66CC33; margin: 30px; … | |
Re: I don't understand. What's to stop them from having one of their relatives to find this page and delete it? | |
I was thinking about joining untill I saw that godaddy offers .ws for only 999 a month and their hosting capabilaties have alot more perks than becoming a gdi affiliate. How can a person compete with such a volume based company as godaddy. I was just wondering if you could … | |
Re: [URL="http://us.php.net/curl"]curl[/URL] | |
| |
Re: Yeha I have to agree with you I've already won the british, nigerian, and worldwide lotteries that I didn't even enter. I felt bad that I couldn't transfer 250 million into my bank account to help out a dying person. Sometime they really choke me up. not | |
This isn't really a question I just noticed on the php manual under control structures that they are going to be using goto. I don't know how old any one is in this forum, but when I saw that it brought me back to the days of when a cd-burner … | |
This may be a funny question. But how does php get rendered, I know it is a top down interpreter. But does that change when using classes. If I make a bunch of variables in a function do all the variables get interpreted first and then the function logic or … | |
Re: I think the problem lies in the fact that ubuntu "just works" is bs after the release of hardy heron an actual beta marked as stable. I mean when a required update crashes your computer it's pretty sad. You should give PCLinuxOS a shot. I use it as a primary … | |
Re: ie7 is a high priority update in microsoft update. This is probably why the numbers are going down. I am not sure but I think aol still uses ie6 as their primary browser. old joke:How many Microsoft programmers does it take to screw in a light bulb? None. Let's define … | |
Just wanted to know everyone's favorite Linux distribution. Misspelled PCLinuxOS. | |
I currently have a database that is just one table with products and is using the myisam engine for the fulltext capabilities on two columns. The question I have is that this database has about 390,000 rows with a lot of duplicate entries namely manufacturer, price. I have been searching … | |
Re: There is a program out there, I won't mention it, That automatically scans the my space search page (the page where you can search for friends based on age, sex, relationship type, and what not. ) while logged in to your account. If you buy the full program you can … | |
I wrote this script and I was wondering if their was an easier way. It's basically for dynamic links [CODE]<?php $currents = $_GET['page']; function paginator($current , $link, $getpre, $firstimg , $lastimg, $endimg, $startimg, $totalitems, $maxperpage){ // $current is the current page should be dynamic // $link is the url , … | |
good afternoon,I am currently in the process of building a database that can expand over time (i think that is an oxymoron, but anyways) From what I have been reading ( I have a 1999 antique book called the complete reference SQL and from viewing websites on this subject) a … | |
Good afternoon, Quick question, this may not make any sense but it is a thought, I was thinking, like I usually like to do, when you pass variables over a browser would it be crazy to md5 hash and salt the variables id and keep them in a db table … | |
I like to read about hashing passwords and have read articles about how md5 and sha-1 could be deciphered albiet it would take 25 million dollar computer and time but still if you could take a password and split it into two pieces and md5 hashed the two pieces add … | |
Re: on my host they give you a php.ini file you can copy to each folder and modify it to your needs. Have you tried ini_set(register_globals, 1) in your php script? [URL="http://us2.php.net/manual/en/function.ini-set.php"]http://us2.php.net/manual/en/function.ini-set.php[/URL] | |
I was wondering if you would get penalized for makeing your file extension a major keyword and then added the extensionsn to be run through as php? like http://"whatever"/index."keyword" or even have the index page a rediredt or write an htaccess for the index file. | |
I was wondering if there are any captchas that use flash. I would think if you used flash and had the text scramble around or even bloat and fade. I know captcha is annoying enough. probably could use SMIL. Any thoughts? | |
Re: IE and firefox you gotta love the way they dare to be different from each other in the way they set their margins and padding differently from each other, such individuals. Why tables? have you tried putting in the data cells that are not working the way you want … | |
Good Morning, I am thinking of letting users upload files to my website. I already have a php script to allow this which will be the back-end of a flash GUI. I have made the .swf which would allow the browser to find files with only the specified file-types for … | |
Re: This may not be the right answer, but I would think that you could make form in a for each statement and have the button text populated by the unique id also create the query . I'm thinking like [CODE] $link=mysql_connect(host, username, pass); mysql_select_db('my_database'); $query='SELECT `uniqueid` FROM `table`'; $result = … | |
Re: I know you have already spent money on dreamweaver but you can try html-kit by chami it's free | |
Re: Well your off to a good start. The best thing to do is buy books and read. Ask questions when you can't figure it out and check out [URL="www.w3schools.com/"]www.w3schools.com/[/URL] [URL="www.killersites.com/"]www.killersites.com/[/URL] | |
Re: I think your website forum is as good as it gets and you shouldn't worry yourself with this question. Patience and time are all you need and with the community you have now everyone is like a tree that will drop seed. | |
Re: well you could actually get a free content mangement system which will probably have modules that are easy to configure depending on what you want the website to do. If you want commercial go ahead and pay for it.tey this url and test out some open source CMS's [URL="http://www.opensourcecms.com/"]Open Source … | |
Re: depending on your host you might have to copy and paste the php.ini file into the folder where you upload script is being executed of course with the before mentioned | |
Re: put a copy of your php.ini file in the same folder where your upload script is change the max file size under your file upload. see if that works | |
Good morning, I am sure this has been asked before. So here it goes. I've been playing with these two php functions and was wondering if I have the logic right. let's say I wrote a function called crazy encrypt [CODE] <?php function crazyencrypt($password){ $is="isthis"; $overkill="overkill"; $pass = $password.$is; $pass1=md5($pass).$is; … | |
I would like to make animated files for my website, Do I need to fork over 699 dollars for adobe or are their alternatives. Liveswif has been inactive for over two years. Any help would be appreciated. | |
Good evening, I have a webpage that changes the image when you mousover another image and I was wondering if I could preload the images to make it faster. it takes about 2.5 seconds to change the image. Should I set my meta tags to cache? The page is at … | |
Re: I'm just learning myself and I found the best way was to get easyphp it puts a mock apache server and php5 and mysql on your computer it's pretty cool for learning how to use different php functions and utilize mysql database functions, plus it also shows the debugging messages, … | |
I keep testing my web applications in different browser versions, but am I the only one who will ever view my web app in IE 5? or IE 6? Besides the ones who use FF and use a IE standalone for testing. Do people still use IE 5? I can … | |
I was wondering is it ok to use png's without fear of the dreaded red x? | |
I was wondering, I might not have this question in the right forum, But how do you disable a program from taking a screen-shot of your website? I'm just asking because I've tried to take screen-shots of some websites and some of them just shut down the program while others … | |
Good morning, I have a favicon.ico in my root directory and I noticed that Firefox uses it but Internet explorer does not. Why is this and is there a work around for it? Thanks, Dave | |
Good evening, I was wondering if anyone knows of any resources that explain the Curl lib function in php. I know that the php manual has the functions associate with the curl lib but they do not have any examples with FOLLOW_LOCATION and other parameters. If anyone knows of any … | |
It's not much but it utilizes the noaa weather service to get the weather by zip code or city, state, or state abbreviation or full state name I was wondering if any one could let me know how I could speed up the response time. Thanks it's at [URL]http://www.askasmartguy.com[/URL] | |
I have a xsl file that is saved as whatever.php. the style sheet is called by <?xml-stylesheet type="text/xsl" href="whatever.php"?> I get an error on firefox that it does not have the correct mime type. I save the xsl file under php because I need to use php in the code … | |
Hello, I was wondering if someone could point me in the right direction. Is their anyway in php that I can change the outlook of an xsl file and include variables from my php script. I have an xsl file, I changed the file extension to php and it worked … | |
Good morning, Is there a php function that will take the text out of a tag in a variable that has HTML in it? What I want to do is get the text from in-between the <h1> tags and use it as a title in my meta tags. Let's say … |
The End.