Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,981 members, 7,817,889 topics. Date: Saturday, 04 May 2024 at 10:08 PM

Nicolas247's Posts

Nairaland Forum / Nicolas247's Profile / Nicolas247's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 10 pages)

Programming / I Need Programme For An Uncompleted Project by nicolas247(m): 7:37am On Jan 25, 2018
Hello

Please if you are vast with PHP, javascript and familiar with codeigniter and can translate web app that is almost ready to mobile
Please call or chat me up on 08167359739

Contact only if you have time for this project
Fashion / Re: Lovely Turban Fascinator (Sale! Sale!! Sale!!!) by nicolas247(m): 2:15pm On Jan 24, 2018
Order today
Distributors wanted nation wide
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 9:49am On Jan 23, 2018
my final Code

<?php
require_once('config.php');
error_reporting(1);
// Pull all the required data from the three tables into one 2 level array
$sql = 'select * from january UNION ALL select * from february UNION ALL select * from march UNION ALL select * from april UNION ALL select * from may UNION ALL select * from june UNION ALL select * from july UNION ALL select * from august UNION ALL select * from september UNION ALL select * from october UNION ALL select * from november UNION ALL select * from december';
$query = $pdo->prepare($sql);
$query->execute();
$row = $query->fetchAll();

// Pull a list of all the staffId from one of the table assuming we have the same number of IDs in all tables
// I added UNION to the select statement because of some record not in all of the table and that works very fine
$sql1 = 'select staffId, name FROM january UNION select staffId, name FROM february UNION select staffId, name FROM march UNION select staffId, name FROM april UNION select staffId, name FROM may UNION select staffId, name FROM june UNION select staffId, name FROM july UNION select staffId, name FROM august UNION select staffId, name FROM september UNION select staffId, name FROM october UNION select staffId, name FROM november UNION select staffId, name FROM december';
$query = $pdo->prepare($sql1);
$query->execute();
$staffIdList = $query->fetchAll();
// start a loop to loop through the list of the staffIds
foreach ($staffIdList as $staffIdList) {


//initialize the variable that will store the sum of each column
$loanamt = 0;
$loan_int = 0;
$saving = 0;
$total = 0;



//start a loop to loop through the 2 level array
foreach ($row as $key => $value){



// use an IF statement to select each of the staffIds and corresponding columns (loan_amt etc) and add them together as the loop runs
if ($row[$key]['staffId']== $staffIdList['staffId']){
$loanamt += $row[$key]['loan_amt'];
$loan_int += $row[$key]['loan_int'];
$saving += $row[$key]['saving_ded'];
$total += $row[$key]['total_ded'];
}
}
// print out the values after each staffId iteration
//echo $staffIdList['staffId']." ".$loanamt." ".$saving." ".$total."</br>";
echo "<tr>";
echo "<td>".$staffIdList['staffId']."</td>";
echo "<td>".$staffIdList['name']."</td>";
echo "<td>".$loanamt += $row[$key]['loan_amt']."</td>";
echo "<td>".$loan_int += $row[$key]['loan_int']."</td>";
echo "<td>".$saving += $row[$key]['saving_ded']."</td>";
echo "<td>".$total += $row[$key]['total_ded']."</td>";
echo "</tr>";
}


?>
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 3:31am On Jan 23, 2018
<?php
require_once('config.php');
error_reporting(1);
// Pull all the required data from the three tables into one 2 level array
$sql = 'select * from january UNION ALL select * from february UNION ALL select * from march UNION ALL select * from april UNION ALL select * from may UNION ALL select * from june UNION ALL select * from july UNION ALL select * from august UNION ALL select * from september UNION ALL select * from october UNION ALL select * from november UNION ALL select * from december';
$query = $pdo->prepare($sql);
$query->execute();
$row = $query->fetchAll();

// Pull a list of all the memberId from one of the table assuming we have the same number of IDs in all tables
// I added UNION to the select statement because of some record not in all of the table and that works very fine
$sql1 = 'select memberId, name FROM january UNION select memberId, name FROM february UNION select memberId, name FROM march UNION select memberId, name FROM april UNION select memberId, name FROM may UNION select memberId, name FROM june UNION select memberId, name FROM july UNION select memberId, name FROM august UNION select memberId, name FROM september UNION select memberId, name FROM october UNION select memberId, name FROM november UNION select memberId, name FROM december';
$query = $pdo->prepare($sql1);
$query->execute();
$memberIdList = $query->fetchAll();
// start a loop to loop through the list of the memberIds
foreach ($memberIdList as $memberIdList) {


//initialize the variable that will store the sum of each column
$loanamt = 0;
$loan_int = 0;
$saving = 0;
$total = 0;



//start a loop to loop through the 2 level array
foreach ($row as $key => $value){



// use an IF statement to select each of the memberIds and corresponding columns (loan_amt etc) and add them together as the loop runs
if ($row[$key]['memberId']== $memberIdList['memberId']){
$loanamt += $row[$key]['loan_amt'];
$loan_int += $row[$key]['loan_int'];
$saving += $row[$key]['saving_ded'];
$total += $row[$key]['total_ded'];
}
}
// print out the values after each memberId iteration
//echo $memberIdList['memberId']." ".$loanamt." ".$saving." ".$total."</br>";
echo "<tr>";
echo "<td>".$memberIdList['memberId']."</td>";
echo "<td>".$memberIdList['name']."</td>";
echo "<td>".$loanamt += $row[$key]['loan_amt']."</td>";
echo "<td>".$loan_int += $row[$key]['loan_int']."</td>";
echo "<td>".$saving += $row[$key]['saving_ded']."</td>";
echo "<td>".$total += $row[$key]['total_ded']."</td>";
echo "</tr>";
}


?>
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 3:28am On Jan 23, 2018
Beautiful. it work perfect
thanks real good. i made some little adjustment i will post my final code below

benjibabs:


You are welcome! I'm glad that got you off the hook. grin

You can easily add the column for the staff name by pulling the column with the names along with the staffid as below:

. . .

// Pull a list of all the staffid & Staff_name from one of the table assuming we have the same number of IDs in all tables
$sql1 = 'select staffid, staff_name FROM january';
$query = $pdo->prepare($sql1);
$query->execute();
$staffIdList = $query->fetchAll();

and then echo it out as below with the other columns:
. . .

// print out the values after each staffid and staff_name iteration
echo $staffIdList['staffid']." ".$staffIdList['staff_name']." ".$loanamt." ".$saving." ".$total."</br>";

change staff_name to the name of the column where you have the staff names.

Happy coding! smiley
Fashion / Lovely Turban Fascinator (Sale! Sale!! Sale!!!) by nicolas247(m): 4:48pm On Jan 22, 2018
Lovely Turban Fascinator designs for all ages. Kindly place a call to order on this mobile 08034282695, 08167359739. We also deliver nation wide

It suit many occasions and groups
You can order for
Church choir
Wedding bridal train
All age group
Etc.

Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 3:38pm On Jan 22, 2018
You are the bomb
thanks so much
problem solved though i am finding it difficult to add a column with staff's name.

benjibabs:
Here you go:

Note:
I used PDO instead of mysqli to connect to mysql database. However, the logic will still work so far you have the data in a multilevel array after using mysqli.

// Pull all the required data from the three tables into one 2 level array
$sql = 'select * from january UNION ALL select * from february UNION ALL select * from march';
$query = $pdo->prepare($sql);
$query->execute();
$row = $query->fetchAll();

// Pull a list of all the staffid from one of the table assuming we have the same number of IDs in all tables
$sql1 = 'select staffid FROM january';
$query = $pdo->prepare($sql1);
$query->execute();
$staffIdList = $query->fetchAll();

// start a loop to loop through the list of the staffids
foreach ($staffIdList as $staffIdList) {

//initialize the variable that will store the sum of each column
$loanamt = 0;
$saving = 0;
$total = 0;

//start a loop to loop through the 2 level array
foreach ($row as $key => $value){

// use an IF statement to select each of the staffids and corresponding columns (loan_amt etc) and add them together as the loop runs
if ($row[$key]['staffid']== $staffIdList['staffid']){
$loanamt += $row[$key]['loan_amt'];
$saving += $row[$key]['Saving_ded'];
$total += $row[$key]['total_ded'];
}
}
// print out the values after each staffid iteration
echo $staffIdList['staffid']." ".$loanamt." ".$saving." ".$total."</br>";
}



Depending on the number of columns and tables you are dealing with, the solution might not be efficient.

Happy coding! grin









Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 8:17am On Jan 18, 2018
Thanks but i still got this error

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Warning: A non-numeric value encountered in D:\xampp\htdocs\2017\test.php on line 12

Singlecliq:



<?php

require 'config.php';

$january=mysqli_query($con,'SELECT staffid, saving_ded, total_ded
FROM january
UNION ALL
SELECT staffid, saving_ded, total_ded
FROM february
UNION ALL
SELECT staffid, saving_ded, total_ded
FROM march
');

//setting up as an array
$month = array();

//looping through and saving as an array
while ($row = mysql_fetch_assoc($january)) $month[] = $row;

//setup a new array after loop

$result = array();

foreach ($month as $val) {

if (!isset($result[$val['staffid']]))

$result[$val['staffid']] = $val;

else

$result[$val['staffid']]['saving_ded'] += $val['saving_ded'];
}

$result = array_values($result);

// reindex array

Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 6:16pm On Jan 15, 2018
Singlecliq:
let me see the result you are getting.
You should be getting this with the code I am seeing

StaffID loan_amt Saving_ded total_ded
122 20 30 50
122 20 30 50
122 20 30 50
235 60 40 100
235 60 40 100
235 60 40 100

Yes but the result i want is this
staff id loan_amt Saving_ded total_ded
112 60 90 150
235 180 120 300


Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 5:49pm On Jan 15, 2018
lol...

this app was my first app and the company are still using it. i will definitely rewrite it but i need this solution in the mean time

yorex2011:
You have tables for January , February... Etc ??

Why not create one table and have a month column, then create you sql to search through the months you need.

What exactly are you trying to achieve, cos i don't seem to understand..

Who taught you php?
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 5:31pm On Jan 15, 2018
not at all
LegendsCoded:


Have you fixed it?

Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 5:49am On Jan 11, 2018
Softhands:
Delete line by line and keep testing each line to know where the problem is... Or check stack overflow..
i have checked stack overflow i dont have reference i can relate with. i don tire
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 5:17am On Jan 11, 2018
LegendsCoded:
Whats the response/error u get?

it is not giving error but just that it is returning wrong value
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 5:16am On Jan 11, 2018
tollyboy5:

Lolz you think sey e easy. I no b guru but you 4 make easier by telling which language you use

It is PHP boss

I have been on this for a week now

it is returning wrong values
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 11:31pm On Jan 10, 2018
people just they look dey pass?
Programming / Re: Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 10:59pm On Jan 10, 2018
help you boy o!
Programming / Please Help Look At My Code (what is wrong with my code ) by nicolas247(m): 8:56pm On Jan 10, 2018
This is my Code but i am clearly hooked


<?php
require 'config.php';

$january=mysqli_query($con,'SELECT staffid, saving_ded, total_ded
FROM january

UNION ALL

SELECT staffid, saving_ded, total_ded

FROM february

UNION ALL

SELECT staffid, saving_ded, total_ded

FROM march
');
while($row1=mysqli_fetch_array($january))
{
$jan1=$row1['staffid'];
$jan2=$row1['saving_ded'];
$jan3=$row1['total_ded'];
?>
<tr>
<td><?php echo $jan1 ?></td>
<td><?php echo $jan2 ?></td>
<td><?php echo $jan3 ?></td>
</tr>
<?php }
?>

Please i really need help i am stock for days now

Table1

StaffID loan_amt Saving_ded total_ded
122 10 15 25
235 30 20 50
Table2

StaffID loan_amt Saving_ded total_ded
122 10 15 25
235 30 20 50

Table3

StaffID loan_amt Saving_ded total_ded
122 10 15 25
235 30 20 50

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

This is the result i will like to archive

StaffID loan_amt Saving_ded total_ded
122 20 30 50
235 60 40 100
Technology Market / Re: UK Used Samsung Galaxy S5 16gb 40k by nicolas247(m): 7:54am On Nov 27, 2017
cc77:
Interested but your location is far
where are you sir? we can do weigh bill
Technology Market / UK Used Samsung Galaxy S5 16gb 40k by nicolas247(m): 5:39am On Nov 27, 2017
Hi every one

Uk used galaxy s5 for sale very neat
16gb black back cover and silver side

if interested pls call me 08167359739
Location Lagos

NYSC / Few Months After NYSC by nicolas247(m): 3:18pm On Jul 22, 2017
Hi

I feel i should share this. less than 3 months after my wife finished her NYSC. she is already making fascinators for friends, neighbour, family and having clients everyday. she is already making some decent money from production and training.

If you are interested in learning or want to make a purchase

feel free to get in touch 08118242156
Autos / Brand New Audi Q7 Or Q5 Urgently Needed This Morning (Urgently Needed) by nicolas247(m): 7:00am On Feb 14, 2017
Hello fellow dealers

Brand New Audi Q7 or Q5 Urgently needed this morning. Please if you have or know anywhere we can get

I have a ready buyer, a Chinese who is ready to pay this morning

feel free to call me up on 08167359739
Autos / Clean Nigeria Used Mitsubishi L300 N1.5mm (negotiable) by nicolas247(m): 8:12pm On Oct 01, 2016
Clean Nigeria Used Mitsubishi L300 for urgent sale.
the bus is in good working condition and available for inspection.

Price : N1.5M (Negotiable)

If interested Please call: 08023910935

Technology Market / Blackberry Z10 by nicolas247(m): 11:08am On Sep 23, 2016
Blackberry Z10
Hi, the phone is without a fault. the screen is still very need though the back cover is not.
Any interested buyer should call me

Price N15,000

Call 08167359739

Programming / Re: Please I Get This Error When Submit Form (notice: Undefined Index) by nicolas247(m): 10:21am On Sep 23, 2016
foldl:


Because they can't read your code! Always use tools like hastebin.com or github gists when you want to share snippets of code. I don't want to strain my eyes reading through lengthy code without the benefit of proper syntax highlighting just because I want to be helpful.

note
thanks the problem was solved

i will share the solution soon thanks
Programming / Re: Please I Get This Error When Submit Form (notice: Undefined Index) by nicolas247(m): 7:42pm On Aug 31, 2016
FincoApps:
Your form action is index.html.

Change it to the location of your php

Here is the where the action pointing to

<form class="login-form" action="form_processor.php?action=memberlogin" method="post">
Programming / Re: Please I Get This Error When Submit Form (notice: Undefined Index) by nicolas247(m): 7:41pm On Aug 31, 2016
lekropasky:
Maybe i miss it, but i cant see your form where you specify the action to be toinclude.php, try and check your form post paramters very well, the problem is there.

Thanks for you contribution

here is cut out of the form to submit

<!-- BEGIN LOGIN FORM -->
<form class="login-form" action="form_processor.php?action=memberlogin" method="post">
<h3 class="form-title">Sign In</h3>
<div class="alert alert-danger display-hide">
<button class="close" data-close="alert"></button>
<span>
Enter any username and password. </span>
</div>
<div class="form-group">
<!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
<label class="control-label visible-ie8 visible-ie9">Username</label>
<input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="Username" name="memberId"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Password</label>
<input class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="Password" name="pwd"/>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-success uppercase">Login</button>
Programming / Re: Please I Get This Error When Submit Form (notice: Undefined Index) by nicolas247(m): 10:22am On Aug 31, 2016
Why is everyone just looking and pass
Programming / Please I Get This Error When Submit Form (notice: Undefined Index) by nicolas247(m): 9:03am On Aug 31, 2016
Please some should help me look at my code

I am trying to fetch a set data from inside table . when ever i submit the require value, i get this error message

"Notice: Undefined index: memberId in C:\xamppp\htdocs\ibank\toinclude.php on line 8
No records matching your query were found."

Here is my code
<?php

$memberId = $_POST['memberId'];
/* Attempt MySQL server connection. Assuming you are running MySQL
server with default setting (user 'root' with no password) */
$link = mysqli_connect("localhost", "root", "", "ibank"wink;

// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}

// Attempt select query execution

$sql = "SELECT * FROM january WHERE memberId='$memberId'";
if($result = mysqli_query($link, $sql)){
if(mysqli_num_rows($result) > 0){
echo "<table>";
echo "<tr>";
echo "<th>date</th>";
echo "<th>description</th>";
echo "<th>credit</th>";
echo "<th>debit</th>";
echo "</tr>";
while($row = mysqli_fetch_array($result)){
echo "<tr>";
echo "<td>" . $row['date'] . "</td>";
echo "<td>" . $row['description'] . "</td>";
echo "<td>" . $row['credit'] . "</td>";
echo "<td>" . $row['debit'] . "</td>";
echo "</tr>";
}
echo "</table>";
// Close result set
mysqli_free_result($result);
} else{
echo "No records matching your query were found.";
}
} else{
echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}

// Close connection
mysqli_close($link);

?>


Here is my form below


<!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.4
Version: 3.3.0
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8"/>
<title>Metronic | Login Options - Login Form 1</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta content="" name="description"/>
<meta content="" name="author"/>
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css"/>
<link href="assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css"/>
<!-- END GLOBAL MANDATORY STYLES -->
<!-- BEGIN PAGE LEVEL STYLES -->
<link href="assets/admin/pages/css/login.css" rel="stylesheet" type="text/css"/>
<!-- END PAGE LEVEL SCRIPTS -->
<!-- BEGIN THEME STYLES -->
<link href="assets/global/css/components.css" id="style_components" rel="stylesheet" type="text/css"/>
<link href="assets/global/css/plugins.css" rel="stylesheet" type="text/css"/>
<link href="assets/admin/layout/css/layout.css" rel="stylesheet" type="text/css"/>
<link href="assets/admin/layout/css/themes/darkblue.css" rel="stylesheet" type="text/css" id="style_color"/>
<link href="assets/admin/layout/css/custom.css" rel="stylesheet" type="text/css"/>
<!-- END THEME STYLES -->
<link rel="shortcut icon" href="favicon.ico"/>
</head>
<!-- END HEAD -->
<!-- BEGIN BODY -->
<body class="login">
<!-- BEGIN SIDEBAR TOGGLER BUTTON -->
<div class="menu-toggler sidebar-toggler">
</div>
<!-- END SIDEBAR TOGGLER BUTTON -->
<!-- BEGIN LOGO -->
<div class="logo">
<a href="index.html">
<img src="assets/admin/layout/img/logo-big.png" alt=""/>
</a>
</div>
<!-- END LOGO -->
<!-- BEGIN LOGIN -->
<div class="content">
<!-- BEGIN LOGIN FORM -->
<form class="login-form" action="form_processor.php?action=memberlogin" method="post">
<h3 class="form-title">Sign In</h3>
<div class="alert alert-danger display-hide">
<button class="close" data-close="alert"></button>
<span>
Enter any username and password. </span>
</div>
<div class="form-group">
<!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
<label class="control-label visible-ie8 visible-ie9">Username</label>
<input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="Username" name="memberId"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Password</label>
<input class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="Password" name="pwd"/>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-success uppercase">Login</button>
<label class="rememberme check">
<input type="checkbox" name="remember" value="1"/>Remember </label>
<a href="javascript:;" id="forget-password" class="forget-password">Forgot Password?</a>
</div>
<div class="login-options">
<h4>Or login with</h4>
<ul class="social-icons">
<li>
<a class="social-icon-color facebook" data-original-title="facebook" href="javascript:;"></a>
</li>
<li>
<a class="social-icon-color twitter" data-original-title="Twitter" href="javascript:;"></a>
</li>
<li>
<a class="social-icon-color googleplus" data-original-title="Goole Plus" href="javascript:;"></a>
</li>
<li>
<a class="social-icon-color linkedin" data-original-title="Linkedin" href="javascript:;"></a>
</li>
</ul>
</div>
<div class="create-account">
<p>
<a href="javascript:;" id="register-btn" class="uppercase">Create an account</a>
</p>
</div>
</form>
<!-- END LOGIN FORM -->
<!-- BEGIN FORGOT PASSWORD FORM -->
<form class="forget-form" action="index.html" method="post">
<h3>Forget Password ?</h3>
<p>
Enter your e-mail address below to reset your password.
</p>
<div class="form-group">
<input class="form-control placeholder-no-fix" type="text" autocomplete="off" placeholder="Email" name="email"/>
</div>
<div class="form-actions">
<button type="button" id="back-btn" class="btn btn-default">Back</button>
<button type="submit" class="btn btn-success uppercase pull-right">Submit</button>
</div>
</form>
<!-- END FORGOT PASSWORD FORM -->
<!-- BEGIN REGISTRATION FORM -->
<form class="register-form" action="form_processor.php?action=january" method="post">
<h3>Create an account</h3>
<p class="hint">
Enter your personal details below:
</p>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Username</label>
<input class="form-control placeholder-no-fix" type="text" autocomplete="off" placeholder="Username" name="memberId"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Password</label>
<input class="form-control placeholder-no-fix" type="password" autocomplete="off" id="register_password" placeholder="Password" name="pwd"/>
</div>

<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Full Name</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Name" name="fullname"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Sex</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Sex" name="sex"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Age</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Age" name="age"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Contact Address</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Contact Address" name="address"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">City/Town</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="City/Town" name="city"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">State</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="State" name="state"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Country</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Country" name="country"/>
</div>
<div class="form-group">
<label class="control-label visible-ie8 visible-ie9">Zip Code</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Zip Code" name="zipcode"/>
</div>
<div class="form-group">
<!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
<label class="control-label visible-ie8 visible-ie9">E-mail</label>
<input class="form-control placeholder-no-fix" type="text" placeholder="Email" name="email"/>
</div>

<div class="form-group">
<!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
<input class="form-control placeholder-no-fix" type="text" placeholder="vdvdv" name="secretNo"/>
</div>
<div class="form-group margin-top-20 margin-bottom-20">
<label class="check">
<input type="checkbox" name="tnc"/> I agree to the <a href="javascript:;">
Terms of Service </a>
& <a href="javascript:;">
Privacy Policy </a>
</label>
<div id="register_tnc_error">
</div>
</div>

<div class="form-actions">
<button type="button" id="register-back-btn" class="btn btn-default">Back</button>
<button type="submit" id="register-submit-btn" class="btn btn-success uppercase pull-right">Submit</button>
</div>
</form>
<!-- END REGISTRATION FORM -->
</div>
<div class="copyright">
2016 © All right Reserved.
</div>
<!-- END LOGIN -->
<!-- BEGIN JAVASCRIPTS(Load javascripts at bottom, this will reduce page load time) -->
<!-- BEGIN CORE PLUGINS -->
<!--[if lt IE 9]>
<script src="assets/global/plugins/respond.min.js"></script>
<script src="assets/global/plugins/excanvas.min.js"></script>
<![endif]-->
<script src="assets/global/plugins/jquery.min.js" type="text/javascript"></script>
<script src="assets/global/plugins/jquery-migrate.min.js" type="text/javascript"></script>
<script src="assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
<script src="assets/global/plugins/jquery.cokie.min.js" type="text/javascript"></script>
<script src="assets/global/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN PAGE LEVEL PLUGINS -->
<script src="assets/global/plugins/jquery-validation/js/jquery.validate.min.js" type="text/javascript"></script>
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN PAGE LEVEL SCRIPTS -->
<script src="assets/global/scripts/metronic.js" type="text/javascript"></script>
<script src="assets/admin/layout/scripts/layout.js" type="text/javascript"></script>
<script src="assets/admin/layout/scripts/demo.js" type="text/javascript"></script>
<script src="assets/admin/pages/scripts/login.js" type="text/javascript"></script>
<!-- END PAGE LEVEL SCRIPTS -->
<script>
jQuery(document).ready(function() {
Metronic.init(); // init metronic core components
Layout.init(); // init current layout
Login.init();
Demo.init();
});
</script>
<!-- END JAVASCRIPTS -->
</body>
<!-- END BODY -->
</html>
Properties / Re: Property For Sale @ Alapere by nicolas247(m): 7:51am On Jul 01, 2016
fairview:
What is the total area of the property and the price

Over 120 x 60 (A plot )
The price is N25M asking
Investment / Do You Have 5M To Invest In Property (location Alapere Close To Ogudu) by nicolas247(m): 5:27pm On Jun 30, 2016
Hello Nairalanders,

I have a property in lagos that worth 20M. I am looking for an investor who can invest an amount of 5Million Naira basically for renovation or restructuring.

Currently A mini flat in the location cost between N350k to N450k.

The financial capacity for me to do so is not there and so am looking for someone who can come and lets do this together.

Please feel free to call / whatsapp me for any information. 08167359739

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 10 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. 113
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.