₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,707 members, 8,423,309 topics. Date: Tuesday, 09 June 2026 at 03:03 PM

Toggle theme

Krs1's Posts

Nairaland ForumKrs1's ProfileKrs1's Posts

1 2 3 (of 3 pages)

WebmastersRe: Need A Quick Solution by krs1(m): 12:25pm On Oct 15, 2007
hi greatdbanj,
here is a slight modification to the script smartsoft provided. it think it should fix the bugs you mentioned (remember the file name should still be send_mail.php):

<?php
@extract($_POST);
$name = stripslashes($name);
$email = stripslashes($email);
$subject = stripslashes($subject);
$text = stripslashes($text);
if(mail(' youremail@domain.com ',$subject,$text,"From: $name <$email>"wink) {
echo('Thank you for your interest, your e-mail was sent.');
} else { echo('<p>Oops! Mail could not be sent. SERVER ERROR</p>'); }
?>


The guidelines provided by smartsoft still applies

also make sure the contact.html looks like this:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML Mail Form</title>
</head>
<body>
<form action="send_mail.php" method="POST">
Name: <input type="text" name="name" size="30" />

Email: <input type="text" name="email" size="30"/>

Subject: <input type="text" name="subject" size="30"/>

Text:<textarea name="text" name="text" cols="50" rows="10"></textarea>

<input type="submit" name="submit" value="Send" />
</form>
</body>
</html>

i hope it helps
WebmastersRe: Please Review My Site Pls by krs1(m): 3:53am On Aug 25, 2007
saw the site. was like, thats more like it.
kudos to maziigwe for coming up with this type of site.

@maziigwe
nice concept. nice site. cool color theme.
Hope to see more site functionalities in future.
good luck.
WebmastersRe: Images As A Text On Your Website Or Text Only by krs1(m): 10:25pm On Aug 21, 2007
@poster
its not only links that are considered in Search Engine Optimizations especially if the info you want to represent is a major keyword for your site.
Other than for SEO purposes, i dont see why a site developer cant use images and/or text to represnt info.
it is all a matter of what the developer want to achieve on the website design.

smartsoft:
@ Kris what i thinkk is if you want to have image as link, it should be 50% image and 50% text
i dont quite understand how you could have 50% image and 50% text in one object. Or do you mean text in the title attribute of an <a> tag ?
Pls enlighten me
WebmastersRe: Images As A Text On Your Website Or Text Only by krs1(m): 4:54am On Aug 21, 2007
from an SEO point of view, images as text is a no-no.
on the other hand, if you want fancy text for your menu tabs or navigation links, best option would be to use CSS to style them.
WebmastersRe: Assistance On Epayment Sites: by krs1(m): 4:50am On Aug 21, 2007
@mikkytrio
thats some good advice from afam. me, i will tell you the same thing.
ProgrammingRe: Php/mysql Programmers, Please Help Me Out ! by krs1(m): 8:23pm On Aug 17, 2007
@ bakenda
Here is the link to a free download of WAMP

http://www.wampserver.com/en/download.php

enjoy!
WebmastersRe: Site Review/company Launch by krs1(m): 2:49pm On Aug 04, 2007
my2cents' own web dev company site, hmmmm and about time too.  wink

I guess you went for simplicity on this site which is good.
I noticed the site was done with CSS. Ok. Try reducing the DIV#container width to min-width: 700px so as to cater for browsers with 800 by 600 pixel screen resolution. same thing for the header.

Layout: Ok, Color theme: Ok, Content: Ok
A few extra graphics wont be a bad idea though.
WebmastersRe: Website Review by krs1(m): 10:48am On Jul 19, 2007
smartsoft and niceuzor, you guys must have a thing for each other wink

sometimes i enjoy your exchange of words. smiley
WebmastersRe: Website Review by krs1(m): 11:10pm On Jul 18, 2007
smartsoft:
Nice site youn got kris
Thanks. yours is cool too.
WebmastersRe: Website Review by krs1(m): 8:56pm On Jul 18, 2007
smartsoft:
Hey Kris1 you might not remember we have met one on one at Orolope Amox shopping complex Egbeda. that was where u company is then.
And later on you showed me some stuff you did on Flash for NTA2 which u said they couldn't pay for your service. remember now ? i said i want to know more about PHOTOSHOP
You must have mistaken me for another kris.
WebmastersRe: Website Review by krs1(m): 7:08pm On Jul 18, 2007
first on syscomptech: its simple and straight to the point. its just like i would expect it to be. BUT you could make the banner image sharper and if possible make the "<< SYSCOMPTECH COMMUNICA, " text animated to make the page more lively.
Also try sticking to one color theme on this site coz' i noticed that each page has a different color theme'

on ahfhd: i noticed some images couldnt load and some pages too. Overall, nice work.
WebmastersRe: I Need Constructive Review Of This Site, Please by krs1(m): 12:00am On Jul 17, 2007
kelechiodo:
,   As for formmail, I have about two that I used php to programme. One worked perfectly during the trial period but when the site was sifted to another data centre, all the formmails stopped working ,
You can post the php script of the problematic formmail on this site, in the programming section and we can help you fix the bug
WebmastersRe: Cost Of Building A Website For A Record Label by krs1(m): 2:54pm On Jul 15, 2007
hello ujuslims,
I can develop such a site for you, Have some experience doing a similar jobs.
Take a look at http://myafricanbargains.com, a site which i developed for a client.

You can contact me by phone: 08052174890 or email: mariokris2000@yahoo.com
Or visit http://www.cyberiaweb.net to look a my portfolio of past projects.
WebmastersRe: I Need Constructive Review Of This Site, Please by krs1(m): 11:56pm On Jul 14, 2007
one word for this site: AMATEUR WORK.

but please don't take my comments too seriously.
As per the form mail, USE THIS:

on your form tag, point the action attribute to send_mail.php.
Then create a new file, call it send_mail.php then insert the following code inside:

<?php
$headers = 'From:'. $source . "\r\n" .
   'Reply-To:'. $source . "\r\n" .
   'X-Mailer: PHP/' . phpversion();

// mail($recipient, $subject, $message, $headers);

if (@mail($recipient, $subject, $message, $headers)) {
echo('<p>Mail successfully sent to the email address you provided!</p>');
} else { echo('<p>Oops! Mail could not be sent. SERVER ERROR</p>'); }
?>


where
$source = "sender's email addy";
$recipient = "recipient's email addy";
$subject = "email title";

$message = {actual email txt eg: $message ="this is the full text for this email"; }

this script will send the form details to the email address you specify ie. $recipient
PLS NOTE: you hve to have a basic knowledge of PHP to use this script.

hope it helps.
BUT PLS IMPROVE ON THE SITE.
WebmastersRe: Is Programming A Prerequisite For Web Design? by krs1(m): 7:12pm On Jul 11, 2007
No. but having programming skills gives you the competitive edge.

These days, clients are more demanding: you will hear things like
1. i need a database for my site
2. i need my feedback form to send the feedback details straight to my yahoo mail inbox
3. i need user authentication on my site for private viewing
etc. etc etc

programming skills definitely gives you the competitive edge.
Jokes EtcRe: Buffest Dog You'll Ever See by krs1(m): 6:58pm On Jul 11, 2007
GOD DAMN!!!

this is the stuff nightmares are made of.
ProgrammingRe: PHP problems! by krs1(m): 12:50am On Jun 23, 2007
@nich

Here is an all-in-one package to solve your Apache/PHP/mysql problems:
go to http://wampserver.com/en/
download the .exe file for windows, install it and everything falls in place.

you do not need to bother with installing any of the 3 seperate components above.

Hope it helps.  smiley
ProgrammingRe: How Programming Affects Your Life by krs1(m): 12:37am On Jun 23, 2007
segebee:
Recently, i had a dream and off all things i was dreamin of php codes
I actually did dream in php codes a few times when i was a new comer in PHP.

The knowledge of programming also made me look at problems more logically.

Hmmm, nice thread
WebmastersRe: I Need A Web Designer, by krs1(m): 1:24pm On Jun 22, 2007
You need a web designer? problem solved.
visit our website http://www.cyberiaweb.net for more info.

Or you can complete our online "website design quote form" to get a free quote according to the specifics you define in the form. the results are instantly delivered to your email addy for future reference. http://www.cyberiaweb.net/consulting/webquote.htm

We can also give you a tailored quote on demand when you call us on 08052174890 or 08033387789

Or you can email here: feedback@cyberiaweb.net
PoliticsRe: Obj Son Of An Ibo Man by krs1(m): 2:36pm On Jun 21, 2007
I was shocked when i saw the headline of this post.
With Abacha, they say he no be nigerian
Now OBJ is not a Yoruba.

meanwhile i saw this while checking the OBJ parternity story:
Here comes the Governor of Okija Shrine-T.A Orji
Undated photo shows Chief Theodore A. Orji, the "Governor -Elect" of Abia State at a shrine in the South Eastern part of Nigeria.
WebmastersRe: We Need To All Come Together As Web Designers And Masters by krs1(m): 8:35pm On Jun 13, 2007
Every naija web designer should go hook up on www.webmastersofafrica.com">http:www.webmastersofafrica.com. From there we can start to forge ahead.

my2cents, where are u? i think you should have somthn to say about nduaj's idea.
WebmastersRe: Abeg, Who Are These People Designing Websites For 4k? by krs1(m): 8:09pm On Jun 13, 2007
cheesy grin
wow! i am loving this.
@la!, abeg tell them oooooo!
Just a few days ago, i rejected N20,000 for a website just because i felt it wasn't enough for a quality job. I deliver quality and rather than sell myself cheap, i wont do it. It's not that i am rich. my biggest project was for N180,000 but that is just me.
Afterall , they say "soup wey sweet, na money kill am".

1 love my brothers and sister(s)
WebmastersRe: Finally, Webmasters Of Africa Is #1 On Google by krs1(m): 11:23pm On Jun 08, 2007
igwe4life:
By the way i rarely have time to update my blog because i spend a huge of my time working on my network of sites
can you provide the links to your network of sites. i want to verify that you are what you claim.

meanwhile nairaland.com ranks #2 for "nigerian forums" smiley
WebmastersRe: Looking For A Freelance Web Designer. by krs1(m): 6:48am On Jun 07, 2007
I reside in enugu but spend most of my time in lagos developing programmes for other web designers or clients.
WebmastersRe: Looking For A Freelance Web Designer. by krs1(m): 9:48pm On Jun 06, 2007
mr. pee
I think i can provide you with what you need and more,
My rates are very moderate. I am a web designer + programmer.
I have an online music site 80% developed which has all the features you want including playing music online.
If upon meeting you find my services ok, you can invest on my music site since i am looking for a worthy client to sell part of the business to.
In addition, i have researched info on online media (especially africa) which you might find usefull.
You can visit my website, to see stuffs i've done before : www.cyberiaweb.net
or email me at mariokris2000@yahoo.com for private correspondence.
Tech JobsRe: Web Programmer Needed With Experience In Php, Mysql, Etc by krs1(m): 2:23pm On Jun 04, 2007
I'm your man. PHP pro.
If it can be done in PHP, i can do it for you
you can mail me at mariokris2000@yahoo.com for more correspondence
or visit www.cyberiaweb.net to see some of my past project
or visit www.naijahotspots.com : a php/mysql site developed by me on behalf of a client.
Music/RadioRe: Timi Is My Idol by krs1(m): 10:43pm On May 16, 2007
Timi is the man!!!
I love the guy's rythmn
WebmastersRe: How Do Web Hosts/developers Make Money In Nigeria? by krs1(m): 10:32pm On May 14, 2007
@ abhosts: You butressed my point when you mentioned this friend of yours who paid N5000 for a domain and got nothing.
I dont use hosting services from naija but go for the global ones like hostgator.com and ipowerweb for my clients.
I tried nairahost.com one time when my credit card wasnt within reach and they are good but then it was N2500 for a domain only.

A naija hosting site must have a clear record of stability and prompt service to get my vote. So in summary, i would say naija hosting sites would need to step up their acts.

abhosts, e be like say you dey offer hosting as well  wink.
which one is it?
WebmastersRe: How Do Web Hosts/developers Make Money In Nigeria? by krs1(m): 12:39am On May 13, 2007
It is as simple as this, there are so many desperate webdesigners out there who will do anything for some cheese even if they cant deliver.
It makes the rest of us who know what we are doing look bad.
Trust some nigerians, they go for these guys because its damn to cheap and at the end of the day they cry blue murder

Okay, for example, take a look at majority of nigerian sites. you will find most of them incomplete or lacking no content at all.
I mean, can you even get a decent domain for 1,800 naira? GOD DAMN  huh huh huh
Its not even enough to fuel my car  tongue
WebmastersRe: Web And Graphic Designers Needed by krs1(m): 12:27am On May 13, 2007
I could be your man
email me here feedback@yberiaweb.net

Or visit my website to see the quality of my graphics. www.cyberiaweb.net

Or call me on 08052174890 for prompt action
WebmastersRe: I Need A Web Designer by krs1(m): 12:23am On May 13, 2007
You need a web designer? problem solved.
visit our website www.cyberiaweb.net for more info.

Or you can complete our online "website design quote form" to get a free quote according to the specifics you define in the form. the results are instantly delivered to your email addy for future reference. http://www.cyberiaweb.net/consulting/webquote.htm

We can also give you a tailored quote on demand when you call us on 08052174890 or 08033387789

Or you can email here: feedback@cyberiaweb.net
ProgrammingRe: Programming Certifications Advice by krs1(m): 5:00pm On Feb 07, 2007
Here is a simple tip for you, ade2kay
do a research on what software applications that individuals and organisations in your area require most.
Then find the best programming languages that can best meet those demands and start training yourself.

Note: almost all programming languages are good, it all depends on the application you want to develop.

1 2 3 (of 3 pages)