DrAyo1's Posts
Nairaland Forum › DrAyo1's Profile › DrAyo1's Posts
@Olawoye You are a hero! The write-up on Correct Pronunciation- good job. |
@Olawoye You are a hero! The write-up on Correct Pronunciation- good job. |
James 3 : 1 My brethren, let not many of you become teachers, knowing that we shall receive a stricter judgement. , May the Lord give you and me, the right understanding of His word. AMEN. |
James 3 : 1 My brethren, let not many of you become teachers, knowing that we shall receive a stricter judgement. , May the Lord give you and me, the right understanding of His word. AMEN. |
Pls anyone who could help- How was last year's cut-off computed? Was it ume score and 200 pume. Or ume+pume/2 ? |
We dnt even know which to believe |
The previous p-ume cut off marks have been posted by some people b4 and it's on Nld. Just type OAU 2009/2010 CUT OFF MARK through google. - The p-ume forms can't be out now, the skl hav nt even written d 1st semester exam. lil patience guys. |
People abroad will just be laughing at us! |
So does anyone see a guy (4rm Ekiti) who scores 280 in Utme in Ife for Med.? |
@davidayo U see, u may end up getting ur adm without the skl mentioning it at all (I've seen one). But if they would, you may have to change ur course quickly to tally with those subjects. @gunners since 08/09 & 09/10 that I know, Ife requires that u get a min of 200 in ur P-UME, then the cut-off marks are fixed using the UME by the various departments. |
You Ogun guys usually have a lower cut off but u can search thru google for prev cut off points. |
Hello scholars in the house, We all know how important this exam is to all Nig students but the board continues to put everyone in the dark concerning how they mark the test. In US where the SAT is taken, it is widely known that to get your score, a correct answer= 1, an unanswered question= 0. And a wrong answer= -1/4. This info is made known as it will help the candidates in preparing for & writing the exams. Anyway, to help students who are going to write the exams or who have written it, let us all share what we know about the grading process or you share your experience with us (like when you or someone you know wrote the exams). We can all help unravel the misery and improve people's performance. |
A young Nigerian 2006 graduate from Olabisi Onabanjo University, Adeyemi Kehinde has been ranked among the world best Oracle Application Developer after the Oracle Application Express Developer Competition 2009 that involved developers from around the world. Kehinde is the only african on the top 12! http://odili.net/news/source/2010/jan/1/15.html |
You know the kind of humiliation a child (whose father does not have a TV) faces when he goes to watch TV in another man's house? Eyes have not seen what our under-development and over-dependency on developed nations will still cause us! |
OOU has started selling. You may try it out. |
OOU has started selling. You may try it out. |
OOU (Olabisi Onabanjo University, Ogun State) has begun the construction of a science research laboratory complex in the school. Quite awesome and large from the look of things. This will really help the school and the science world at large especially in a period where facilities like this are absent in many Nigerian universities. Thumbs up OOU! Keep up the good work. |
Thanks everyone for your reply. @Xanadu: I followed your reference to dynamicdrive and it helped Thanks Omnipotence for the script. |
I was on a page building a form, and I will like to limit the characters that can be entered in the text field. That is when the user is typing in the browser and the characters reach the limit (I chose) he won't be able to type anything more. Also, how would I prevent some characters like #. @ etc in the text field. Thanks. |
Yep! |
Hello NLDers, I will like to know if there is any clique in Nigeria that deals majorly on book distribution and marketing (not necessarily book publishing). I discover this is done solely by publishers. Presently, I have a science book I will like to futher distribute throughout Nigeria. The book sold more than 250 copies in less than 3 months of publishing. If you can help well here, I will like to recieve your mail on djkunect@yahoo.com I will also like your views on productive book marketing and distribution. |
Thanks so much, biggjoe. U took ur time to point out those flaws. I'm grateful. I Will effect it and tell u how far. |
The Codes (I was able to get the connection going) <?php require_once('Connections/mysite.php'); ?> <?php // *** Validate request to login to this site. if (!isset($_SESSION)) { session_start(); } $loginFormAction = $_SERVER['PHP_SELF']; if (isset($_GET['accesscheck'])) { $_SESSION['PrevUrl'] = $_GET['accesscheck']; } if (isset($_POST['usrnametxt'])) { $loginUsername=$_POST['usrnametxt']; $password=$_POST['usrnametxt']; $MM_fldUserAuthorization = ""; $MM_redirectLoginSuccess = "login success.php"; $MM_redirectLoginFailed = "login fails.php"; $MM_redirecttoReferrer = true; mysql_select_db($database_mysite, $mysite); $LoginRS__query=sprintf("SELECT Username, Paasword FROM login WHERE Username='%s' AND Paasword='%s'", get_magic_quotes_gpc() ? $loginUsername : addslashes($loginUsername), get_magic_quotes_gpc() ? $password : addslashes($password)); $LoginRS = mysql_query($LoginRS__query, $mysite) or die(mysql_error()); $loginFoundUser = mysql_num_rows($LoginRS); if ($loginFoundUser) { $loginStrGroup = ""; //declare two session variables and assign them $_SESSION['MM_Username'] = $loginUsername; $_SESSION['MM_UserGroup'] = $loginStrGroup; if (isset($_SESSION['PrevUrl']) && true) { $MM_redirectLoginSuccess = $_SESSION['PrevUrl']; } header("Location: " . $MM_redirectLoginSuccess ); } else { header("Location: ". $MM_redirectLoginFailed ); } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Login</title> <style type="text/css"> <!-- body,td,th { font-family: Georgia, Times New Roman, Times, serif; font-size: 14px; } --> </style></head> <body> <table width="100%" border="0" align="left" cellpadding="0" cellspacing="0"> <tr> <td><form ACTION="<?php echo $loginFormAction; ?>" id="usrnmeform" name="usrnmeform" method="POST"> <label>Username <input name="usrnametxt" type="text" id="usrnametxt" /> </label> </form></td> </tr> <tr> <td><form id="pswdform" name="pswdform" method="post" action=""> <label>Password <input name="pswdtxt" type="text" id="pswdtxt" /> </label> </form></td> </tr> <tr> <td><form id="submitform" name="submitform" method="post" action=""> <label> <input type="submit" name="Submit" value="Submit" /> </label> </form></td> </tr> </table> </body> </html> Expecting your usuall replies. |