-
Replied To a Post in help
We need more information than this. Are you trying to make this process asynchronous during user interaction with JavaScript, or are you POSTing the data to a PHP script or … -
Began Watching echoed Links not showing in php code block
hi i have followed a friends tutorial for my website and all is working upon production but when im attempting to add it to my site im having problems getting … -
Replied To a Post in echoed Links not showing in php code block
It looks like the PHP code may not be executing. Does your file have the .PHP extension, not .HTML or anything else? Either that or there's an issue with your … -
Replied To a Post in IRC commands
I'm more looking at how I can adapt the IRC network for legitimate purposes, so there would be no need to run on a destructible virtual machine. I've looked at … -
Created IRC commands
Hi all, I was recently reading an interesting article about setting up an SSH honeypot to track malicious activity (article avaliable here http://www.symantec.com/connect/articles/analyzing-malicious-ssh-login-attempts) The article mentions that after an attacker … -
Began Watching IRC commands
Hi all, I was recently reading an interesting article about setting up an SSH honeypot to track malicious activity (article avaliable here http://www.symantec.com/connect/articles/analyzing-malicious-ssh-login-attempts) The article mentions that after an attacker … -
Marked Solved Status for mysql memory usage
Hi all, I am running a mySQL database on a webserver hosting multiple Wordpress installations. It seems that database is getting swamped with memory and going into a continual loop … -
Replied To a Post in mysql memory usage
Hi all, thanks for the good responses. I actually realised that even though I had created a swap drive, there was a spelling mistake in /etc/fstab so it wasn't mounting … -
Created mysql memory usage
Hi all, I am running a mySQL database on a webserver hosting multiple Wordpress installations. It seems that database is getting swamped with memory and going into a continual loop … -
Began Watching mysql memory usage
Hi all, I am running a mySQL database on a webserver hosting multiple Wordpress installations. It seems that database is getting swamped with memory and going into a continual loop … -
Began Watching Adult Website On Portfolio?
Hello Daniweb, I feel kind of awkward asking this but, I've been offered to make an adult portfolio website and I was wondering if I should display that I've made … -
Replied To a Post in Adult Website On Portfolio?
Interesting question. Most of the answers tend to bring morals into it. In my part of the world (New Zealand) prostitution is legal, regulated, and there is a growing acceptance … -
Replied To a Post in Ajax call returning unprocessed PHP
It's peculiar. I eventually figured out that my AJAX call was flawed due to PHP logic (problems with the POST data processing). For some reason, when my PHP logic was … -
Began Watching Help!
I'm currently working on a website; crafterguide.azurewebsites.net; and I was woundering how to get the best possible login/register/logout page, how get it where when someone creates/log's in to a(n) account … -
Replied To a Post in Help!
You created a dupicate post. I posted a reponse on the first one asking for more evidence of your requirements. In case you missed it: What solutions have you looked … -
Marked Solved Status for Connecting to remote hidden mySQL server
A theoretical question about connecting to hidden services through PHP. Say I am writing an application on the clearnet that relies on data stored within a mySQL database that is … -
Began Watching Help!
I'm currently working on a website; crafterguide.azurewebsites.net; and I was woundering how to get the best possible login/register/logout page, how get it where when someone creates/log's in to a(n) account … -
Replied To a Post in Help!
What solutions have you looked at so far? What's your knowledge / experience with PHP? Have you thought about where your client data will be stored, and do you know … -
Replied To a Post in Connecting to remote hidden mySQL server
Some good points. Perhaps I'm more unfamiliar with Tor protocols than I thought, but I don't understand some of things you mentioned. 2 & 3. Yes, but isn't this all … -
Created Connecting to remote hidden mySQL server
A theoretical question about connecting to hidden services through PHP. Say I am writing an application on the clearnet that relies on data stored within a mySQL database that is … -
Began Watching Connecting to remote hidden mySQL server
A theoretical question about connecting to hidden services through PHP. Say I am writing an application on the clearnet that relies on data stored within a mySQL database that is … -
Began Watching radio button value issue in Registration form
Hi I am trying to insert to database. I am facing an issue in getting relavent radio button value. suppose if i select 1 or 2 or 3 radio button, … -
Replied To a Post in radio button value issue in Registration form
TexWiller is correct, this code seems to be accurate since you only want one value from the radio button, or you would be using a checkbox. You can only select … -
Began Watching I need a php script that will run automatically every day ?
Anybody help me ? I need a php script that will run automatically every day on Morning 09:00 O'clock. But my script not working. My script. <?php date_default_timezone_set('Asia/Calcutta'); $now = … -
Replied To a Post in I need a php script that will run automatically every day ?
The consensus here is on point. Your orginal code only checks once to see if the date is within the parameters or not, so in order for this to work … -
Began Watching Please tell me any hosting providers that let me switch my servers to PHP 7
I have read a lot that PHP 7 out performs the previous versions of PHP. I am thinking of moving all my websites to PHP 7 so that my sites … -
Replied To a Post in Please tell me any hosting providers that let me switch my servers to PHP 7
My experience is that many providers don't support it right now, but it's very easy to set up yourself in a VPS enviroment. I imagine once 7.0 is accepted into … -
Replied To a Post in PHP adding variables to string
Thanks for your responses, that's really helpful. But how come the variable I used in my example is a string, not an array or an object? -
Replied To a Post in Ajax call returning unprocessed PHP
Correct, I am getting the PHP file as depicted above. There is a rewrite rule in place with NGINX, could this be causing it? The strange thing for me is … -
Began Watching How to send an email after a new record is made in the database?
The system basically work in this series: a new registration is made in the database, the system sends me an e-mail notifcando a new record. -
Replied To a Post in How to send an email after a new record is made in the database?
Look up PHPMailer, in my experience it really is the best option. You can of course use the php mail() function, however, it does depend on a local mail server, … -
Began Watching Encrypt $_GET parameter PHP
I have two questions does its possible to encrypt get parameter same like the passwords are? If NO whats the best method to do it i have simple parameter `articleID=1`, … -
Replied To a Post in Encrypt $_GET parameter PHP
ryantroop is correct (as far as my limited knowledge goes) when he mentions that SSL is the way to go. Regardless of whether you use POST or GET, data is … -
Began Watching How do i implement an entire php file into wordpress
Dear folks , I've already created some website from scratch with html and javascript , php etc. On the other hand i also created websites with wordpress. I find the … -
Replied To a Post in How do i implement an entire php file into wordpress
The Wordpress templating engine allows full use of PHP, so you have the power (and responsability) of adding code like this. There are effectively two ways to add this code … -
Created PHP adding variables to string
Hi all, In all my time with PHP I have only ever seen one way of adding a variable onto the end of the string: $string = "hello" . $variable; … -
Began Watching PHP adding variables to string
Hi all, In all my time with PHP I have only ever seen one way of adding a variable onto the end of the string: $string = "hello" . $variable; … -
Created Ajax call returning unprocessed PHP
Hi all, Something disturbing is happening... I make an AJAX call to a page and it returns unprocessed PHP, not HTML. However, when I navigate to the page manually, the … -
Began Watching Ajax call returning unprocessed PHP
Hi all, Something disturbing is happening... I make an AJAX call to a page and it returns unprocessed PHP, not HTML. However, when I navigate to the page manually, the … -
Marked Solved Status for PHP classes and keepalives
Hi all, I just have a question about how PHP works. Say I have several classes that I call but don't `unset()` once I've finished with them, how long will … -
Created PHP classes and keepalives
Hi all, I just have a question about how PHP works. Say I have several classes that I call but don't `unset()` once I've finished with them, how long will … -
Began Watching PHP classes and keepalives
Hi all, I just have a question about how PHP works. Say I have several classes that I call but don't `unset()` once I've finished with them, how long will … -
Marked Solved Status for jQuery question getElementById
Hi all, just a quick question. I believed that `$('#value')` was a jQuery function equivalent to `document.getElementById('value')` however, in the code below, only the second function gives the desired result. … -
Replied To a Post in jQuery question getElementById
Ah, cheers! -
Marked Solved Status for mySQL Select Query
I'm having some real trouble running some basic queries that I should be able to run easily. I have a table called settings. When I query `SELECT * FROM settings` … -
Replied To a Post in mySQL Select Query
Ah - great to know. Thanks for this! -
Created mySQL Select Query
I'm having some real trouble running some basic queries that I should be able to run easily. I have a table called settings. When I query `SELECT * FROM settings` … -
Began Watching mySQL Select Query
I'm having some real trouble running some basic queries that I should be able to run easily. I have a table called settings. When I query `SELECT * FROM settings` … -
Marked Solved Status for AJAx forms
Hi all, I'm having some serious issues with AJAX forms. I'm currently using jQuery 2.2.0 and the jQuery Form plugin. I have a simple php file: <?php if(isset($_POST)): print_r(json_encode($_POST)); endif; … -
Replied To a Post in AJAx forms
I understood that the AJAX script returns a response, which I then insert into the function and display in the console. However, I'm new to JS as well. But I …
The End.