Hello, I'm currently updating the web site to the latest standards and codes, like css3 and html 5.
This process will take from 2 to 5 days to be completed.
Friday, 5 November 2010
Wednesday, 11 August 2010
Wednesday, 21 July 2010
Free Professional Web sites
Do not lose this chance, I am offering my free time to work for companies or to persons for experience!!! That means that you will get a free web designer/developer for free to work with you.
This make part of my work experience schedule, that means that i am taking time to get experience after I had finish my course, I have great skills and motivation, please visit my web site for more details.
This offer is limited to London area and surroundings up to 10 miles.
Follow the link to get in touch with me.
http://mariodesigns.co.uk/contact.html
This make part of my work experience schedule, that means that i am taking time to get experience after I had finish my course, I have great skills and motivation, please visit my web site for more details.
This offer is limited to London area and surroundings up to 10 miles.
Follow the link to get in touch with me.
http://mariodesigns.co.uk/contact.html
Thursday, 3 June 2010
Mario Duarte Bring's new designs to mariodesigns.co.uk
Hello and good new's
The new web site is now under development and will be online soon, be the first to take a look how it's looks like, the new design will be all designed by and draws and sketches, from the graffiti's to the illustrations, this will be a unique layout like no other!
The new web site is now under development and will be online soon, be the first to take a look how it's looks like, the new design will be all designed by and draws and sketches, from the graffiti's to the illustrations, this will be a unique layout like no other!
Please help me by providing me with your opinion about the design.
Tuesday, 25 May 2010
New Mariodesigns.co.uk layout
Hello everyone I am working on the new layout, and I got to say that the working is going fast.
All the new layout will be designed by hand draws and sketches:
All the new layout will be designed by hand draws and sketches:
The new layout will be wild and creative like myself, each designer has is own way to express himself and all their work reflect their own personalty, many web/graphic designers choose a clean and retro style I decide to go though a different path and show my own style, doing what I like the most!
If you are a Web designer go through your own style, do some research on the internet for unique Portfolios and get some inspiration:
- http://www.webdesign-inspiration.com/
- http://elitebydesign.com/22-most-creative-web-portfolios/
- http://wellmedicated.com/inspiration/40-beautiful-web-design-portfolios/
You can get some good inspiration by seeing those links, stay tuned for more updated news about my new web portfolio.
Wednesday, 19 May 2010
About the new Layout
The new mariodesigns.co.uk web site layout is been made from scratch, is been involving loads of research and work to bring to life an unique web site that must be like me, that is the point for a good web portfolio, it must tell who we are and what we do and what we like.
Friday, 14 May 2010
Create an autosender for your php forms
Hello again, so this week I will make an auto-sender, what is an auto-sender? well the auto-sender that I will build is for php form, but can be applied in a big range of thing like to send periodic newsletters and others.
I will explain step-by-step but I recommend having the basics of PHP.
Let's start;
so lets build the form:
This should look like tis form:
Name:
E-mail:
Comments:
so with the basic for created, now he will create a new php file where we will send the form to an e-mail and the auto-sender that will send an e-mail to the e-mail placed on the form.
so we start by open the php code:
and now we will create the variables for the e-mail form, to create a variable we wright: $variable_name, variables cannot have any spaces so we place an underscocre.
$to = "youremail@youremail.com";
$subject = "create an auto-sender";
$email = $_REQUEST['e-mail'];
$name= $_REQUEST['name'];
$mensage= $_REQUEST['comments'];
$headers = "From: $email";
$sent = mail($to, $subject, $mensage, $headers) ;
if($sent)
{print "Thanks for contacting me, I will be in touch soon."; }
else
{print "We encountered an error sending your request,please try again, if the problem continue contant me on youremail@youremail.com"; }
?>
Now that we have created the email php script we will start to create the auto-sender, that is no more no less tham a secound php email script.
$responseSubject = "$name, your email have been recived";
$responseMessage = "Hello $name,\n\nThanks for submitting your email.
I will be in contact with you shortly to resolve your query.";
$responseFromName = "--your name--";
$responseFromEmail = "youremail@youremail.com";
mail($email, $responseSubject, $responseMessage,
"From: ".$responseFromName." <".$responseFromEmail.">");
?>
And its all, we have now a php email form with an auto-sender
I will explain step-by-step but I recommend having the basics of PHP.
Let's start;
so lets build the form:
This should look like tis form:
Name:
E-mail:
Comments:
so with the basic for created, now he will create a new php file where we will send the form to an e-mail and the auto-sender that will send an e-mail to the e-mail placed on the form.
so we start by open the php code:
and now we will create the variables for the e-mail form, to create a variable we wright: $variable_name, variables cannot have any spaces so we place an underscocre.
$to = "youremail@youremail.com";
$subject = "create an auto-sender";
$email = $_REQUEST['e-mail'];
$name= $_REQUEST['name'];
$mensage= $_REQUEST['comments'];
$headers = "From: $email";
$sent = mail($to, $subject, $mensage, $headers) ;
if($sent)
{print "Thanks for contacting me, I will be in touch soon."; }
else
{print "We encountered an error sending your request,please try again, if the problem continue contant me on youremail@youremail.com"; }
?>
Now that we have created the email php script we will start to create the auto-sender, that is no more no less tham a secound php email script.
$responseSubject = "$name, your email have been recived";
$responseMessage = "Hello $name,\n\nThanks for submitting your email.
I will be in contact with you shortly to resolve your query.";
$responseFromName = "--your name--";
$responseFromEmail = "youremail@youremail.com";
mail($email, $responseSubject, $responseMessage,
"From: ".$responseFromName." <".$responseFromEmail.">");
?>
And its all, we have now a php email form with an auto-sender
Subscribe to:
Posts (Atom)
