Passwords recovery by email who knows?
anyone could help me on php programming?
Are you asking for monodevelop?
Is this possible to be done on a shared server or a dedicated server is needed?
What is the problem?
make ability input other data?
What should i refresh or stop in code?
Need this validation in JavaScript
Try it with jQuery
It’s off topic, not about PHP but about programming.
Back in the days there was some IDE with a Basic-like programming language and visual editor like in Visual Basic. The name was O’Basic 97.
At almost the same time I had another IDE were it was possible to design control elements like buttons, drop downs, options and positioning them on forms (just like Visual Basic), but I can’t remember the name. It must have been something with the letter “M”. But heck, I can’t remember. mindmap, mindmips, macromind, mediamap, … I searched all of them, no success.
As I remember the control elements and forms had some brownish-grey style (sometimes made you think about cofeee).
I really would like to know the name of that IDE / programming language so maybe I could download it and get it run for nostalgia or at least see some screenshot.
If I get to know the name, I will securely save it somewhere 😉
It’s off topic, not about PHP but about programming.
Back in the days there was some IDE with a Basic-like programming language and visual editor like in Visual Basic. The name was O’Basic 97.
At almost the same time I had another IDE were it was possible to design control elements like buttons, drop downs, options and positioning them on forms (just like Visual Basic), but I can’t remember the name. It must have been something with the letter “M”. But heck, I can’t remember. mindmap, mindmips, macromind, mediamap, … I searched all of them, no success.
As I remember the control elements and forms had some brownish-grey style (sometimes made you think about cofeee).
I really would like to know the name of that IDE / programming language so maybe I could download it and get it run for nostalgia or at least see some screenshot.
If I get to know the name, I will securely save it somewhere 😉
Are you asking for monodevelop??
Websites like tumbler , blogger, wordpress allow users to register new sub-domain names from within the website by using a simple HTML/PHP form. With my current knowledge of PHP I couldn’t figure out myself how this is done. I’ve read some posts on this and still can’t build a clear idea about this.
So, how do I create a script that allows users to register their own sub-domains on my website (www.username. mydomain. com) and more than that, how do I allow them to use a different website template (as wordpress does). Is this possible to be done on a shared server or a dedicated server is needed?
No, it was not monodevelop. But thanks a lot.
Okk
What is the problem?
Yess

But what next!
Can do if html templates are rdy
Websites like tumbler , blogger, wordpress allow users to register new sub-domain names from within the website by using a simple HTML/PHP form. With my current knowledge of PHP I couldn’t figure out myself how this is done. I’ve read some posts on this and still can’t build a clear idea about this.
So, how do I create a script that allows users to register their own sub-domains on my website (www.username. mydomain. com) and more than that, how do I allow them to use a different website template (as wordpress does). Is this possible to be done on a shared server or a dedicated server is needed?
Those website uses php form to get input from user may or may not do authentication in that api.
They then have their systems verify user , check input and run shell commands to create subdomain.
It’s similar process when installing templates, selected template will be installed from stored files at server side for that user..
if (!isset($_SERVER[‘PHP_AUTH_USER’])) {
header(‘WWW-Authenticate: Basic realm=”My Realm”‘);
header(‘HTTP/1.0 401 Unauthorized’);
echo ‘Text to send if user hits Cancel button’;
exit;
} else {
echo “<p>Hello {$_SERVER[‘PHP_AUTH_USER’]}.</p>”;
echo “<p>You entered {$_SERVER[‘PHP_AUTH_PW’]} as your password.</p>”;
}
?>
By using this code if user input incorrect login or data, there is no chance to put it again. What could be done to

Is not working
Why???
Is not working
Why???
If(!empty($url1))
header( “refresh:5;url= $url1” );
else
header( “refresh:0;url= $url1” )
header( “refresh:5;url= $url1” );
else
header( “refresh:0;url= $url1” )
Not work in my code
So i use html meta tag
So i use html meta tag
If(!empty($url1))
header( “refresh:5;url=”. $url1);
else
header( “refresh:0;url= “.$url1);