Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,158,933 members, 7,838,330 topics. Date: Thursday, 23 May 2024 at 07:36 PM

Yinksey's Posts

Nairaland Forum / Yinksey's Profile / Yinksey's Posts

(1) (2) (3) (4) (5) (of 5 pages)

Webmasters / Re: Post your PHP Problems Here by Yinksey(m): 9:29am On Oct 04, 2013
how can this code be improve.

/*
* convert datetime to UNIX timestamp
* @param $time date time formatted time
* which will be converted
* @return UNIX timestamp format for the
* supplied time
*/
function to_unix($time) {
// divide the the time into two sections date
//and time
$expl = explode(' ',$time);
//explode the date
$year = explode('-',$expl[0]);
//explode the time
$time = explode(':',$expl[1]);
// convert it into Unix timestamp using mktime function
$unix = mktime($time[0],$time[1],$time[2],$year[1],$year[2],$year[0]);
//return the new time.
return $unix;
}
$time = '2013-10-28 12:00:00';
echo to_unix($time);
Webmasters / Re: Phpbrowserbox - Standalone Windows Browser That Displays Output From PHP 5.4.16 by Yinksey(m): 8:34pm On Oct 03, 2013
bravo! bravo!! bravo!!! , you really tried bro tony, I guess you use DOT NET.am I right!
Webmasters / Re: Post your PHP Problems Here by Yinksey(m): 8:24pm On Oct 03, 2013
Sejj: Hey my bosses, am not a professional web designer but i created a website using a WYSIWYG software (Easy Website Pro). Please how do i make my contact form work cos i know it is PHP based.

I think this link answers your request.
www.phpeasystep.com/phptu/8.html
Webmasters / Re: SQL Injection by Yinksey(m): 7:22am On Aug 13, 2013
Well maybe am still a kid in this, i only thought pdo got it all, but what are the real steps to take to prevent this dreadful attack @slyrox since i know u be an hacker. and @op.
Webmasters / Re: SQL Injection by Yinksey(m): 10:31pm On Aug 12, 2013
When u are using PDO Extension with php to deal with mysql, i think you dont need to worry about sql injection.
Webmasters / Re: Website Review by Yinksey(m): 10:12pm On Jul 26, 2013
I dont see anything bad in what graphicplus has said, infact have even learnt some new things from the review he gave, the guy is website crawler lol.
Webmasters / Re: Need A Creative Website Developer Urgently by Yinksey(m): 3:10pm On Jul 12, 2013
We are ready to help you just email me @ yinksey.brown@gmail.com
Webmasters / Re: I Won’t Stop Attacking Nigerian Websites –irish Hacker by Yinksey(m): 6:40am On Jul 09, 2013
Speechless....padding (sigh)
Webmasters / Re: Another Little CSS Challenge by Yinksey(m): 3:49pm On Jul 04, 2013
Simple, yorme already did it.
Webmasters / Re: Please Web Masters--help by Yinksey(m): 9:39pm On Jul 01, 2013
That error is usually associated with ur web server, which means you might have misconfigured, or maybe your are trying to use sef url while its not properly configured on ur web server, you might try to check ur configuration and configure properly, or try renaming ur .htaccess file. To e.g .htaccess.txt.
Webmasters / Re: My Request When Elvis10ten Is Cleared by Yinksey(m): 1:26pm On Jun 29, 2013
Hmmn,gud to hear that @javanian.
Webmasters / Re: My Request When Elvis10ten Is Cleared by Yinksey(m): 11:04am On Jun 29, 2013
Lets wait for javanian, but i dont think elvis is a scammer, i know this guy for a very long time as a j2me programmer, @9japortal.tk and av seen him actively participating on php nigeria group on facebook, and i dont tink there is nothing bad for a 14yrs old boy to be a programmer,since i also started programming with php when i was 16, so just let the sleeping dog lie.

1 Like

Webmasters / Re: Website Design Training In Lagos & Anambra State by Yinksey(m): 10:53pm On Jun 15, 2013
@greenmouse thats nice!
Webmasters / Re: Another CSS Challenge by Yinksey(m): 8:58pm On May 31, 2013
Ops not on a computer,when am on a computer i will try to post my solution.
Webmasters / Re: Who Can Do This With Only Css. No Javascript by Yinksey(m): 12:46pm On May 31, 2013
@graphicplus, thanks, am just trying to change to the new oocss style,will soon change totally very soon.
Webmasters / Re: Who Can Do This With Only Css. No Javascript by Yinksey(m): 12:39pm On May 31, 2013
@adewasco u're welcum.
Webmasters / Re: Who Can Do This With Only Css. No Javascript by Yinksey(m): 12:06pm On May 31, 2013
@graphic plus, here is a basic solution i have, but still works as expected, you may also need to improve the code to suite what you need it for.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr">
<head>
<title>Three divs</title>

<style>

.divs {background:#fff;
width:150px;
padding:8px;
border:1px solid #ddd;
color:#333;
float:left;
margin:10px;
height:120px;
}
.green{color:green; cursor:pointer}
.red{color:red; cursor:pointer}
.pink{color:pink; cursor:pointer}

.green:hover > .bar{background:green;z-index:-1}
.red:hover > .bar{background:red;z-index:-1}
.pink:hover > .bar{background:pink;z-index:-1}

.bar{background:#555;
padding:5px;
height:160px;
position:absolute;
z-index:-10;
top:0;
left:0;
width:940px;
transition:0.5s;
}
</style>
</head>
<body>


<div class="divs green">
<div class="bar"></div>
<h1>Green Div</h1>
</div>

<div class="divs red">
<div class="bar"></div>
<h1>Red Div</h1>
</div>

<div class="divs pink">
<div class="bar"></div>
<h1>Pink Div</h1>
</div>
<div style="clear:both"></div>


</body>

</html>
Webmasters / Re: 's New Upcoming Brand by Yinksey(m): 7:24am On Jun 13, 2012
*excited*,dhtml you are gud bro,i can't even wait to see the new upgrades....thumbs up man.
Webmasters / Re: a by Yinksey(m): 8:33pm On Dec 08, 2011
I nominate *dhtml

(1) (2) (3) (4) (5) (of 5 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 19
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.