₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,324,999 members, 8,419,864 topics. Date: Thursday, 04 June 2026 at 04:41 AM

Toggle theme

Silverluci's Posts

Nairaland ForumSilverluci's ProfileSilverluci's Posts

1 2 3 4 5 (of 5 pages)

PhonesRe: Internet Plan You Are Currently Using On Your Phone? by silverluci(f): 3:38pm On Feb 09, 2013
Hotdiamond: personally, I just hate people Who sell tweaks. You got it free. And you wana sell it. Doesn't make sense?
Pleeessse hot Diamond I need it too silverluci4real@yahoo.co.uk.
Thanks a lot
CelebritiesRe: Charlyboy's New Pictures by silverluci(f): 9:39am On Jan 31, 2013
i love naija o....if u fine,dem go tok.u ugly,dem tok....u fat,dem tok...u thin,dem tok...u dance azonto,dem tok...............
SportsRe: Ethiopia Vs Nigeria - AFCON 2013 (0 - 2) On 29th January 2013 by silverluci(f): 9:24am On Jan 31, 2013
a beg wetin be dat zambian site?
BusinessHelp Your Girl With Business Info Please! by silverluci(op):
i have asked several people but they keep on telling me that it is not profitable but the environment that i find myself now warrants me to want to go into it.
i am a student and want to go into recharge card printing, small scale and all the websites i have visited are either out of the business or is asking me for one thing or the other.
Guys/Ladies, do you know any site i could easily register with to start this on a small scale basis.
I would really be grateful if this info is given

Thanks in Advance grin grin grin
Art, Graphics & VideoRe: How Is The Animation Market In Nigeria by silverluci(op): 9:12pm On Nov 07, 2012
whoa peterReezer! U've said it all. I heard also that u have to atleast know how to draw! How true is that?
Art, Graphics & VideoRe: How Is The Animation Market In Nigeria by silverluci(op): 8:36pm On Nov 05, 2012
Thanks guys, u rock!! Wondering where all the females in this section are?
Art, Graphics & VideoRe: How Is The Animation Market In Nigeria by silverluci(op): 8:30pm On Nov 05, 2012
ladanski: Yes, i am into 3d animation and teach anyone interested for free. If you want to learn, you can also view tutorials on youtube and blender.org.
Art, Graphics & VideoHow Is The Animation Market In Nigeria by silverluci(op): 6:23pm On Nov 02, 2012
Just saw the bye bye to design section thread and am hoping all hope is not lost here.
I've got a huge problem that has been on my mind for a long time.

ANIMAtION!!

I love this particular area of graphics but most people tell me to forget it cos they say it is expensive to learn and not worth anything.

I would also love to know the softwares that would aid or put me in line for my future dream...

HELP! HELP!! HELP!!!
ProgrammingRe: Help Your Girl O Programmers In The House! by silverluci(op): 2:10pm On Sep 13, 2012
thanks guys you are simply the best. i used some of the ideas i got here and it worked. here is the code:

<?php
if($query){
$cat_ids = array();
echo "<tr>";
while($row = mysql_fetch_assoc($query)){
$cat_ids[] = $row["cat_id"];
echo "<th width='200' align='center' ><a href='productpage.php?cat_id=". $row["cat_id"] . "'><b>". $row["type"] . "
</a></th>";
}
echo "</tr>";
echo "<tr>";
for($i = 0; $i < count($cat_ids); $i++){
displayRandomProduct($cat_ids[$i]);
}
echo "</tr>";
}
?>
i simply created a page called productpage.php and referenced the cat_id. when i was through i started smiling like a she-goat. i really grateful nairlanders.
CelebritiesRe: May-D Set To Sue PSquare For Breach Of Contract by silverluci(f): 5:46pm On Sep 09, 2012
stevekenny: Can smbody tell us what brought about acrimony btw them.
my dear dondi, that is why we have GOOGLE!
ProgrammingRe: Help Your Girl O Programmers In The House! by silverluci(op):
<?php
//connect to server
include('config.php');
$sql = "Select * from category";
$query = mysql_query($sql);
?>
<html>
<head>
<title>Shopping Cart</title>
</head>
<body>
<center>
<img src="images/carton cahrt.jpg" />
<br />
<table>
<form>
<tr>
<td width="200"><input type="submit" name="goods" value="Goods For sale" /></td>
<td width="200"><input type="submit" name="basket" value="Basket Content" /></td>
<td width="200"><input type="submit" name="order" value="Order" /></td>
</tr>
</form>
<?php
if($query){
echo "<tr>";
while($row = mysql_fetch_assoc($query)){
echo "<th width='200' align='center' ><a href='books.html?cat_id=". $row["cat_id"] . "'<b>". $row["type"] . "
<img src='images/".$row["cat_image"]."' width='200' height='200' /></a>Price: ".$row["price"]."<br /><b> Quantity:</b> <input name= 'qty' size='5'> <br /><a href=''>add to cart</a></th>";
}
echo "</tr>";
}
?>
</table>
</center>
</body>
</html>

that's all the code. it has three category. the books, the gadgets and phone. each category is a link to each page. the problem is how do i link each of them to their respective page with this code. i am still stuck o to change the bolded to something else
ProgrammingRe: Help Your Girl O Programmers In The House! by silverluci(op): 7:27pm On Sep 04, 2012
yes bossman. Exactly. And do i hope to achieve that.
ProgrammingRe: Figure Out The Error Please (PHP And Mysql)!!! by silverluci(f): 2:56pm On Sep 04, 2012
webdezzi: mysql_query() commits queries automatically so no need to commit changes, you also want to remove the mysql_query("BEGIN" );

this line



does not make sense, even if balance and amount were constants, it still wont work that way
i believe you wanted to do something like this



which will still not give you the desired result
why not add things up before append the query like this





remember, if the balance column in your database is of type INT, then you want remove the quote, same with the quote around 12345


I also want to believe you have selected your database before trying that query.
your head is there jare!
ProgrammingRe: Help Your Girl O Programmers In The House! by silverluci(op): 2:29pm On Sep 04, 2012
webdezzi and co. please am counting on you guys
kiss cry undecided embarassed undecided
ProgrammingHelp Your Girl O Programmers In The House! by silverluci(op):
while($row = mysql_fetch_assoc($query)){
echo "<th width='200' align='center' ><a href='books.html?cat_id=". $row["cat_id"] . "'<b>". $row["type"] . "
<img src='images/".$row["cat_image"]."' width='200' height='200' /></a>Price: ".$row["price"]."<br /><b> Quantity:</b> <input name= 'qty' size='5'> <br /><a href=''>add to basket</a></th>";



this is the code but i want to change the url from books.html to something else when someone clicks on another category. i am so stucked but i remembered that i've got some faithful brothers (and sisters?).
Please i am counting on you guys
Art, Graphics & VideoRe: Private Tutor by silverluci(f): 2:12pm On Aug 30, 2012
ask seun. grin grin grin grin lol
EducationRe: All Girls Schools Make Nigerian Girls Promiscuous by silverluci(f): 4:35pm On Jul 24, 2012
Odunnu: Sharrap on stuff you know nothing about?
Do I sound like a s[b]l[/b]ut to you?
no mind am. make im talk wetin im no nothing about. mtcheew
ProgrammingRe: Any Female Programmers In The House? by silverluci(op): 6:53pm On Jul 21, 2012
BLECINS: @op
hi i'm an electrical/electronic engineer by profession, I started learning C++ and linux a few months back, i stopped cos i'm preparing for my MSC enterance exam. Once i'm done with the exam, i'll resume my programming.
i have some materials and i dont mind sharing them with you .
its nice to know i'm not the only lady investing my time on programming
cheers...............
here's my email addy:silverluci4real@yahoo.co.uk. I'd rily appreciate sharin stuffs wit u. Who says we cant do beta.
ProgrammingRe: Any Female Programmers In The House? by silverluci(op): 10:14pm On Jul 20, 2012
Javanian: whats shocking??.?? grin
jst tot women love challenges and wld take up wat men wld ordinarily do. Its jst so disapointin
ProgrammingRe: Any Female Programmers In The House? by silverluci(op): 10:07pm On Jul 20, 2012
Enoquin: Congrats Silverluci... I am so proud of you winkCongrats Silverluci... I am so proud of you
*blushes and batting lashes* c'mmon, dat was nothing
ProgrammingRe: Any Female Programmers In The House? by silverluci(op): 10:00pm On Jul 20, 2012
so wait o. I dt understand. Are ther no female programmers one this forum xcept one.? Thats shocking!
ProgrammingRe: Any Female Programmers In The House? by silverluci(op): 9:52pm On Jul 20, 2012
seyron: yea yea yea....am here a female programmer wt help exactly do u nid, programin is nt al abt cramin codes, if u r cramin codes u r smawgetin it wrng, programin is interestin f n only if u knw it,,,, if u knw it u cn neva b bore
for real! Wat av u learnt, i wld lik to kw. Also wat inspired u.
ProgrammingAny Female Programmers In The House? by silverluci(op): 5:54pm On Jul 20, 2012
Hi all, i am new both on nairaland and in the programming world. Apart from cramming codes like C++, Basic and Fortran from year one thru year three just to pass my courses, i recently started learning programming for real as am on IT. Having learnt the "markups" and javascript, i am now on php and i am so plain bored cos i don't have any inspiration to ginger me.makes me want to drop everything and maybe do some simpler stuff like hardware maintenance.
Also i have noticed that on this forum there are not enough ladies to ginger upcoming females like me.
is it really true that ladies are daft in this field? Ladies in the house, please state come out and tell us what you've learnt.
FamilyRe: I Need Wise Answer by silverluci(f): 2:31pm On Jul 17, 2012
i can help you solve all of your problems, but you have to do the following:
1. stand up from the toilet seat
2. bend with your head facing the seat
3. and then EAT TO YOUR FILL
HA HA HA
Science/TechnologyRe: Bluetooth Shoes: Footwear For The Blind by silverluci(f): 2:08pm On Jul 17, 2012
Kayusfity: why are u spamming all threads with these your UNBAN ME plea. it's disgusting and as a matter of fact, i think u need to be killed huh huh huh huh huh huh
chei take am small small na. Afam is my man
PoliticsRe: Shehu Sani: I Know Who Can End Boko Haram Menace by silverluci(f): 10:48am On Jul 08, 2012
jmaine: Hmmm ! Dude is so confident . . . .
how are is he sure abt this boko haram person if he isnt part of the whole thing in the first place.
PoliticsRe: States with The Best Infrastructure In Nigeria by silverluci(f): 2:42pm On Jul 05, 2012
Akwa Ibom state is the best developing state ever! I am proud that i am back home to ma mother's land.

1 2 3 4 5 (of 5 pages)