₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,484 members, 8,422,271 topics. Date: Monday, 08 June 2026 at 01:51 AM

Toggle theme

Jenifa123's Posts

Nairaland ForumJenifa123's ProfileJenifa123's Posts

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

ProgrammingRe: Friendzone by Jenifa123(op): 9:57pm On Jun 04, 2017
Javanian
lordZOUGA
kodewrita
seun
Pls move to fp...
a brother is asking...
ProgrammingRe: Friendzone by Jenifa123(op): 6:31pm On Jun 03, 2017
Friendzone is increasing rapidly join now....
It's http://friendzone.com.ng
ProgrammingRe: Developer Needed For A Forum + Ecommerce Site Bugdet 140k by Jenifa123:
...
ProgrammingRe: Please Help, Browsers Can't Find My External Css by Jenifa123: 6:26pm On May 16, 2017
swayflow:
Thank you all so much, I am using xampp local host.
I just want to link bootstrap. Here is my code in the <head> tag:

<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.theme.min.css">
<script src="bootstrap/js/bootstrap.min.js"></script>

I started web design newly. The linking worked in my previous web design, but now it's not anymore. The stylesheet displays in dreamweaver live view, but not on chrome or Firefox.

I inspected it with Firefox 'firebug' it says '404 Not found ' but the style sheet is linked correctly.

P. S I tried the ctrl+f5 it didn't work cry .
Try using this for d style sheet
<link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
Instead...
WebmastersRe: Do You Own A Mobile App Or Have A Social Network , Come IN Here by Jenifa123: 6:30pm On May 15, 2017
Beatcityradio:
The official beat city radio wishes to partner with an app or social network company for 2017 SEASON 1 EDITION OF Sing on Radio , we would make use of ur app or network for voting and other activities , Company or individual should send a mail to info@beatcityradio.com ,drop mobile number on mail for detailed explanation
You can partner with http://friendzone.com.ng for it...
Just check It out
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 10:45pm On May 14, 2017
dhtml18:
Yeah, but I can see that you need to still do some work on the platform sha. But on the overall, I am impressed by what I saw, and have more than a dozen questions and observations - that will be for some other time mind you.
Sure...
I'll be waiting...
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 9:07pm On May 14, 2017
It's your work oh...
Trolling...
dhtml18:
Of course, I am always trollin' about as usual
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 7:36pm On May 14, 2017
dhtml18:
Weldone
Thank you...
Saw u checked it out
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 6:41am On May 14, 2017
uzoexcel:
How far with your site jenifa123? I saw a good link on quora on several ideas but I lost it..I 'll try and send it again
Just saw your post...
The site u mean must be http://friendzone.com.ng n it's going fine...
Am currently building an Android app for it
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 8:56pm On May 06, 2017
Dem go arrest u oh... Lol...
Abeg free d guy
dhtml18:
There is need - i need to kill someone on this board maybe that will reach FP.
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 8:28pm On May 06, 2017
dhtml18:
Please let the guy fight, i will surely finish him on this board, I am thirsting for e-blood!
There's no nid... You've both made ur points so I guess u should end it hethete
ProgrammingRe: An Online Compiler, Interpreter And IDE For Nairaland by Jenifa123: 7:52am On May 05, 2017
dhtml18:
It is okay to insult me, but let me ask you one question - Did Seun ask for your advice? Or do you think it is cool to start running your mouth on another person's business? It is a free world - if you think you can build a better Nairaland, then you are welcome to try.

Because as far as I am concerned, this thread is just as if you are trying to rubbish Nairaland, if you do not like this board as it is - you are welcome to EXIT and NEVER COME BACK.
it's OK.. make una stop to fight
stealthtiger:
Lol.. this got me laughing hard.
Do you think you've found one?
Because​ you're getting this across to the wrong person
No need for this epistle of Paul

PS
This is a programming section and you know what it should entail.

I'm not forcing any idea down any ones throat.
PhonesRe: Friendzone by Jenifa123(op): 8:00am On Apr 28, 2017
CelebritiesRe: Friendzone by Jenifa123(op): 7:59am On Apr 28, 2017
ProgrammingRe: Friendzone by Jenifa123(op): 7:58am On Apr 28, 2017
WebmastersRe: Friendzone by Jenifa123(op): 7:57am On Apr 28, 2017
Technology MarketRe: Friendzone by Jenifa123(op): 7:55am On Apr 28, 2017
WebmastersRe: Drop Your Mail For A Free Peer To Peer Script by Jenifa123: 5:47am On Apr 15, 2017
tdon327@gmail.com
ProgrammingRe: Search Multiple Tables by Jenifa123: 4:41pm On Apr 08, 2017
Hmmm
Kinda busy now..
Will put up a solution b4 9pm

Since I don't have all d time to write d codes.
Lemme share one I used of recent



if(isset($_POST['vpv_search_box']) && !empty($_POST['vpv_search_box']))
{
$searchq = $_POST['vpv_search_box'];
$searchq = preg_replace("#[^0-9a-z - . _]#","",$searchq);

$search_for_people = mysqli_query($conn,"SELECT * FROM friendzone WHERE first_name LIKE '%$searchq%' OR last_name LIKE '%$searchq%' OR username LIKE '%$searchq%' order by `id` desc limit 4"wink or die(mysqli_error());
$count = mysqli_num_rows($search_for_people);
if(mysqli_num_rows($search_for_people) > 0)
{
?>
<li class="vpb_titles"><span class="text">People</span></li>
<?php
while ($row = mysqli_fetch_array($search_for_people)) {
$fname = $row['first_name'];
$lname = $row['last_name'];
$id = $row['id'];
$user=$row['username'];
$check_pic = mysqli_query($conn,"SELECT profile_pic FROM friendzone WHERE username='$user'"wink;
$get_pic_row = mysqli_fetch_assoc($check_pic);
$profile_pic_db = $get_pic_row['profile_pic'];
if ($profile_pic_db == ""wink{
$profile_pic = "img/default_pic.png";
}
else
{
$profile_pic = "userdata/profile_pics/".$profile_pic_db;
}
?>

<li>
<?php
echo $output .= "<div>'<li><a href=$user><img src='$profile_pic' height='25' width='25'>' <a href=$user>$row[username]
</a></li></div><br />'";
?>
</li>
<?php
}
$search_for_pages = mysqli_query($conn,"SELECT * FROM Pages WHERE company_name LIKE '%$searchq%' OR company_username LIKE '%$searchq%' order by `id` desc limit 2"wink or die(mysqli_error());

$count = mysqli_num_rows($search_for_pages);
if(mysqli_num_rows($search_for_pages) > 0)
{
?>
<li class="vpb_titles"><span class="text">Pages</span></li>
<?php
while ($row = mysqli_fetch_assoc($search_for_pages)) {
$id = $row['id'];
$company_name = $row['company_name'];
$company_username = $row['company_username'];
$company_picture = $row['company_picture'];
$company_background_pic = $row['company_background_pic'];
$user_like_company = $row['user_like_company'];
}
$check = mysqli_query($conn,"SELECT company_picture FROM Pages WHERE company_username='$company_username'"wink;
while($row = (mysqli_fetch_assoc($check))) {
$profi = $row['company_picture'];
}
if ($profi == ""wink {
$my_cover = "../img/biz.jpg";
}
else{
$my_cover = "../userdata/page_profile_pics/".$profi;
}
?>
<li>
<?php
echo $output .= "<div>'<li><a href=./pages/$company_username><img src='$my_cover' height='25' width='25'>' <a href=./pages/$company_username>$row[company_username]
</a></li></div><br />'";
?>
</li>
<?php
}
else
{
//Do nothing as our major reason for seaching are people and not pages
}
?>
<li class="more">
<a href="javascript:void(0);" onclick="alert('LOL');">

<span class="text">See more result for <?php echo $search_term; ?> <img src="images/vpb_arrow.png" alt="" border="0"></span>
<span class="category">Displaying top <?php echo mysqli_num_rows($search_for_people)+mysqli_num_rows($search_for_pages); ?> results</span>

</a>
</li>
<?php
}
else
{
$search_for_pages = mysqli_query($conn,"SELECT * FROM Pages WHERE company_name LIKE '%$searchq%' OR company_username LIKE '%$searchq%' order by `id` desc limit 2"wink or die(mysqli_error());

$count = mysqli_num_rows($search_for_pages);
if(mysqli_num_rows($search_for_pages) > 0)
{
?>
<li class="vpb_titles"><span class="text">Pages</span></li>
<?php
while ($row = mysqli_fetch_assoc($search_for_pages)) {
$id = $row['id'];
$company_name = $row['company_name'];
$company_username = $row['company_username'];
$company_picture = $row['company_picture'];
$company_background_pic = $row['company_background_pic'];
$user_like_company = $row['user_like_company'];
}
$check = mysqli_query($conn,"SELECT company_picture FROM Pages WHERE company_username='$company_username'"wink;
while($row = (mysqli_fetch_assoc($check))) {
$profi = $row['company_picture'];
}
if ($profi == ""wink {
$my_cover = "../img/biz.jpg";
}
else{
$my_cover = "../userdata/page_profile_pics/".$profi;
}
?>

<li>

<?php
echo $output .= "<div>'<li><a href=./pages/$company_username><img src='$my_cover' height='25' width='25'>' <a href=./pages/$company_username>$company_username
</a></li></div><br />'";
?>

</a>
</li>
<?php
}
?>
<li class="more">
<a href="javascript:void(0);" onclick="alert('This is only a demonstration and so, no link is added to this. Thanks...');">

<span class="text">See more result for <?php echo $search_term; ?> <img src="images/vpb_arrow.png" alt="" border="0"></span>
<span class="category">Displaying top <?php echo mysqli_num_rows($search_for_pages); ?> results</span>

</a>
</li>
<?php
}

}
ProgrammingRe: How To H@ Ck An E-voting Site by Jenifa123: 3:02pm On Apr 06, 2017
jidez007:
You are right. Everything that is on a network has possibility of being hacked. But the guy wants to hack an election that uses OTP, and is coming in a few weeks time. What is the chances of that being hacked? Not even by a seasoned hacker but by someone who may have little programming experience.
There is this stuff called a disposable phone number that you can use to poll in more votes
ProgrammingRe: How To H@ Ck An E-voting Site by Jenifa123: 11:13am On Apr 06, 2017
jidez007:
No it can't be hacked.
U guys get it all wrong...
There is nothing that can't be hacked... It may just take longer time
ProgrammingRe: How To H@ Ck An E-voting Site by Jenifa123: 6:58pm On Apr 05, 2017
Alexander1370:
Please how can i h@ck an e-voting site to increase the number of vote. The site is such that student need to login with their matric number and a special pin sent to them to vote.PLEASE HELP
First question is why do u want to hack it
WebmastersRe: Help Me Out With My Wapego Site by Jenifa123: 2:47pm On Apr 05, 2017
Copy n paste d code n d error then
WebmastersRe: Help Me Out With My Wapego Site by Jenifa123: 3:11am On Apr 05, 2017
Mrchusenvessel:
i cant upload file to my storage,and any file that i fetch via url is not displaying? even my logo isnt displaying. please help me out
Wat error does it show...
And try checking if d image gets uploaded to d folder you've set... And also if datz a yes then check if u are using d correct fetch url...
Technology MarketRe: Friendzone by Jenifa123(op): 3:00am On Apr 05, 2017
JudeTheGenius:
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, object given in /home/friendzo/public_html/markets.php on line 222
Fatal error: Call to undefined function mysqli_numrows() in /home/friendzo/public_html/chatt.php on line 407
Tanks for d insight didn't know about such errors on d PC view... Will fix it ASAP
CelebritiesRe: Photo Of Bimbo Akintola And Sola Sobowale At An Event by Jenifa123: 8:57am On Apr 04, 2017
See as dem fine
WebmastersRe: nomore by Jenifa123: 6:16am On Apr 02, 2017
yomalex:
How did you know it was $10 undecided
Itz an induced deduction from d op first post
sharpguy10:
Hello good guys,
I write this post to tell you all to stay away from onlinenaira.com because they are stealing peoples money now. Two day ago I told them to fund my PayPal account, since that day till now they have not fund it. When I called them, one of the agent told me that the money I want to fund my PayPal account is small the minimum I can use to fund my PayPal is $10. I told the onlinenaira agent to return the money back to my onlinenaira account so that I can add more money to it. Since two days now he has not fund it. And I try to call himand he refuse to pick my calls. Sometimes he will switch it off. So today I try to call another number in their contact address, the agent told me that he will do it and i can send any amount i want. And he also told me to wait for about an hour. After one hour I try to call the agent but he is not picking his call. When I check Facebook this afternoon, I saw two people were still complaining about the same thing. I put this post here so that you too will not be scam. Please beware of onlinenaira.com they are scammers.
CelebritiesRe: Music Act, Morell Robbed On An Uber Trip In Abuja by Jenifa123: 5:59pm On Mar 31, 2017
Poor guy
WebmastersRe: Friendzone by Jenifa123(op): 12:19pm On Mar 28, 2017
still need more mods
Call 08074100181

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