- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
107 Posted Topics
Re: Gd day im omol, nice forum btw probally see me around alot from now on. my first post on this forum :). any ways see ya guys around. | |
Re: It's all personal prefrence. Try a few and see what you get on with the best. Personally i recommend aptana and notepad++ Aptana featues loads of plug-ins that are really useful such as php, ruby, php and it's abilty to have svn intergrated is a time saver =) | |
Re: cmos chips for things like vending machines and such like use little programs on chips with no os. Close as you can get i spose to having no os. But it is still running operations so it's an os. Sort of like how long is a bit of string. | |
Re: Its what every good developer should have in his tool box created by themselves and every competent should have in a framework. It's hard to see without seeing your class. | |
Re: Is the beep 1 short beep or is it multiple beeps? | |
Re: There are multiple ways to skin a cat. You can use a database to link to the image files, but this is pretty pointless if the image files reside on the same server. A better way would be to have a folder for images and use a for loop to … | |
Re: If you have access to the server you can use a usb gprs/3g/4g modem to send text messages. | |
Re: If that is the actual output from the print_r function, the array is being returned with 4 values, all empty or something similar. Convert the binary data returned into hex and see if something is being returned from the sql query that should not be. [code] echo bin2hex($d); [/code] | |
Re: Do you want to post back to the current page? [code] <?php if (!empty($_POST['submit'])) { echo $_POST['box']; } else { ?> <form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post"> <input type="text" name="box" /> <input type="submit" value="Submit" name="submit" /> </form> <?php } ?> [/code] If you want to post back to the same page, … | |
Re: The simple answer is you can't, you're not ment to be able to unencrypt an md5 hash. You simply compare a string to the MD5 hash you have stored. For example, you have usernames and passwords stored in a database, a user enters a password, you change this to an … | |
Re: Personaly I would use a perl spider set on a cron job to do this, that way you don't need a user to have a web broswer poiting at your website for the bot to run. | |
Re: Its most probally your mssql setup. I have had horrible issues with mssql and php. Does your sql server reside on the same computer as your web server? Point your server var at the ip address of the server. I prefer to use odbc connections when forced to develope with … | |
Re: If bobs method of repairing windows fails......... Try updating the firmware for your DVD drive. We will need some more infomation on the make and model of your drive. Please post the make and model of the drive and I am sure we can get this fixed. | |
Re: Its nice to see a record shop attempt to change its business model to meet the current market. Now we just need the record companys to wake up a realise how outdated their model is. | |
Re: [CODE]$text = strip_tags($text);[/CODE] This will strip out all html tags. You can also optionaly pass anouther parimeter after the string to leave specified tags in place. | |
| |
Re: Just as a side note, what would happen if i entered the username or password. [CODE]test'); DROP TABLE logins;--[/CODE] Always escape any user input text with. [CODE]mysql_real_escape_string($string);[/CODE] | |
Re: Are you stupid or just rude? You have already been told what it is. Its part of the joomla cms. [url]http://www.joomla.org/[/url] Read the comments I have added. [CODE] <?php /* * This checks to see if the constant "_VALID_MOS" has been set. * * If this constant has not been … ![]() | |
Re: 1) Make a spider to crawl the web that follows every link it can find and scrapes important infomation about the linked page. 2) Log the results into a database. (You will need alot of storage.) 3) Create an algorithym that searches your database based on what a user entered … | |
Re: Design and implement an elliptic curve algorithm for securing your users data.... How long have you been using / scripting in php? How about something like interfaceing with other services and applications? Sockets programming maybe? A developer is not limited by skill but by their own imagination. | |
Re: As bob stated, but '../login.php' if your in the directory above. You need to change the session.cookie_domain from the default of "" to ".yourdomain.com" You can do this with session_set_cookie_params before you call session_start. [url]http://us2.php.net/manual/en/function.session-set-cookie-params.php[/url] | |
Re: Rename your file to index.php | |
Re: The best / safest way is to use the suphp mod. I won't go into details of why its a bad idea to lower the user permissions for ssh or raise the user permissions of your web server. [url]http://www.suphp.org/[/url] | |
Re: If this takes a while to complete as a query on your database you could be timing out on the mysql connection. Where abouts to do you open the mysql connection in your code? I can't see a call to any functions or class at the begining of your query. … | |
Re: You will need to use javascript. Off the top of my head the mootools framework can do this within a few lines of code. | |
Re: Hi John, Good to meet you. I'm in the broadcasting business as well, good to meet someone insane anough to have worked in it also. Welcome to the forums, hope to see you around. | |
Re: You need to forward the ports to you webserver. I'm guessing port 80. It depends on your router how you do this. [url]http://portforward.com/[/url] | |
Re: Water and electricity do go together well. | |
Re: In internet explorer can you please go to: Help -> About Internet Explorer Then post what the Cipher Strength reads? | |
Re: What kind of hosting are you using? Do you own the whole server and mail server? Do you have root access to the server? | |
Hi everyone, I am having a bit of an issue with multiple outbound connections. I have set up 2 open vpn servers on the same IP address. Server 1: Port 500 dev tap0 ip 10.8.2.1 Server 2: Port 501 dev tap0 ip 10.8.3.1 On the client side I have. Client … | |
Re: [quote="ntlgnce"] sounds like a issue with the cableing. perhaps its got a kink in it or some other interfearance. [/quote] Rofl. It sounds to me as if you have an issue with the way windows is loading the networking. Login with the computers administrator. Go to start -> run Type … | |
Re: 1) This is no easy task. 2) More information would be useful. What code? 3) Have you started to plan any of this? Any research? | |
Re: Its not hard at all, but a pro gets paid. | |
Re: The best way is not to get one in the first place by having decent anti-virus and firewall configuration. I think what Phillie was sugesting is take an image of your computer before you get infected, and if / when you do roll back to that image. If you do … | |
Re: ">>" Is used to shift left. "->" Is used to assigned a pointer to a structure or union. | |
Re: PHP is based on the C programming language, so it is a pretty logical step to take. C# and the dotnet framework are great for putting out applications in a very short amount of time and will save you thousands of lines of mundane repetitive code. But you still need … | |
Re: You will need to compile or allow the option to execute on the server with in php. Check to see if php allow the exec command. [CODE] <?php function exec_enabled() { $disabled = explode(', ', ini_get('disable_functions')); return !in_array('exec', $disabled); } ?> [/CODE] You will need to add executable permissions to … | |
Re: What language, if any do you have experience in. What OS are you planning on using? Internetworking with TCP/IP: Client-Server Programming and Applications by Douglas E. Comer and David L. Stevens is very good and will teach you the low level necessary to fully understand TCP/IP sockets programming. | |
Re: Pfft, zends too slow for this kind of program. I demand my hello world to be as fast as possible. [code] section .text global _start _start: mov edx,len mov ecx,msg mov ebx,1 mov eax,4 int 0x80 mov ebx,0 mov eax,1 int 0x80 section .data msg db "Hello, world!",0xa len equ … | |
Re: So much bad advice here. I would personally recommend getting a couple of good books before spalashing out on a corse that teaches you webdesign. It is not as easy as some people seem to think and rather than add to the sea of crap already out there why not … | |
Re: Either create a cms driven site and let the end user make changes. My old company used to charge a rate of £40 per hour, things like changing a picture take about 1 minute so dose not workout in huge profits like you would expect. | |
Re: [quote]lost the ability to drive anywhere without some annoying slightly posh woman barking instructions at us every few minutes.[/quote] Wife replacement. Good read :) | |
Re: Are you sure you want a visitor counter? Apart from looking really tacky they can also be very embarrasing. | |
Re: Bristol, UK and at the other side of the world Vancouver, BC. | |
Re: Pendulum. Always on in my car. I love listening to hardcore when coding, is that wrong? |
The End.