₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,324,995 members, 8,419,857 topics. Date: Thursday, 04 June 2026 at 03:17 AM

Toggle theme

Biggjoe's Posts

Nairaland ForumBiggjoe's ProfileBiggjoe's Posts

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

WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 7:15pm On Sep 14, 2009
yawa-ti-de:
biggjoe:

Not the point - that you can't or shouldn't use DW

The point - when all you have is a hammer, everything is a nail.
Ya it is absolutely true and its not like I didnt get the point.
However, Nitation seemed to be trying to get personal when he tried to overstretch the issue by referring to a casual statement I made earlier.
PoliticsRe: More Than 92% Of Nigerians Live Below Poverty Line - Usaid by biggjoe(m): 7:07pm On Sep 14, 2009
That na LIE naa. ah ah!

Where are those poor people sef. Even our beggars and almajiri do better than that everyday. Now they are talking about 92%!

Where are they getting all these information from.
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 6:26pm On Sep 14, 2009
nitation:
@Biggjoe,
If you have learnt through this system, then I see why it took you six months to fix a line of code.
-----------------------
Now I see where you are taking this whole thing to. But I wont be available there.

I must also say here that Dreamweaver helped me to learn and I am not ashamed of it ok. That hasn't changed anything about the way I work now. Some of the best coders cant even use DW probably because they dont believe in it. Some might have also learnt with it.

When you said: "Bad programming practice me brother", I wondered whether you still remember that you are talking about learning.

Anyone can learn through any given method, thats why we are all different.
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 11:26am On Sep 14, 2009
nitation:
@ Poster,

Looking at your codes, I will suggest you learn the basics of Hyper Texture Markup Language before venturing into Server-side scripting language such as - php, Asp, Jsp, etc.

This will do you every good! If not, you will find yourself asking for help with everything you wanna do. Google beginners to HTML and I believe "Sir googs" will not disappoint.

- nitation
if he can use dreamweaver, he has come to a stage where it will be easier for him to learn from codes generated by DW than online tutorials.

Thats the way I see it though.
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 6:43pm On Sep 12, 2009
Afam:
Is login success.php a valid page name?

Is login fails.php a valid page name?
As for valid, I will say Yes. Yes because the page will be available but the url will be encoded to 'login%20fails.php'
Advisable? My answer is NO.

yawa-ti-de:
Here is another (assuming you didn't type it that way on purpose). It is bolded for your convenience:
And that too.
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 3:14pm On Sep 12, 2009
I noticed two errors from your code:

You declared your username field as your password field on line 15 below,  I indicated the error line in red and the alternate code on it below.
<?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'];
15.    $password=$_POST['usrnametxt']; // use:  $password=$_POST['pswdtxt'];
  $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&nbsp;
        <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>
Again, the portion I colored red above is all wrong,  you created separate forms for each of your form fields.  All your form fields should be inside one form, ok?
use the one below:

<form ACTION="<?php echo $loginFormAction; ?>" id="usrnmeform" name="usrnmeform" method="POST">
      Username
        <input name="usrnametxt" type="text" id="usrnametxt" />
        Password
        <input name="pswdtxt" type="text" id="pswdtxt" />
        <input type="submit" name="Submit" value="Submit" />
       

       
    </form>
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 12:58pm On Sep 10, 2009
yawa-ti-de:
Well we can't say that biggjoe smiley

Maybe he can't afford the credits to surf regularly or whatever. We can't really say. Let us give him some time.

Having said that, a wise man once told me many years ago that many people don't need help, because they don't appreciate it.
I cant agree less on that one. People appreciate things better when they pay for it.
PoliticsPriest On Divine Mission Hijacks Mexican Plane by biggjoe(op): 9:09am On Sep 10, 2009
Priest on divine mission hijacks Mexican plane
6 hours 7 mins ago

Jennifer Gonzalez Buzz Up! Print Story A Protestant priest who said he was on a divine mission hijacked a Mexican plane mid-air with 104 people on board triggering a brief airport drama, officials said. Skip related content
Related photos / videos The Aeromexico aircraft that was hijacked sits iddle on the tarmac of Mexico City's …More Enlarge photo The Aeromexico aircraft that was hijacked sits iddle on the tarmac of Mexico City's …More Enlarge photo Mexican security forces take into custody the alleged kidnappers of an Aeromexico flight Enlarge photo Mexican security forces transport passengers of a kidnapped Aeromexico flight Enlarge photo Mexican security forces board the highjacked Aeromexico flight Enlarge photo Bolivian priest Jose Mar FLores Pereira, hijacker of an Aeromexico airliner, is taken …More Enlarge photo
Related content
Priest got 'divine' message to seize Mexican plane
Bolivian priest behind Mexican plane hijack: officials
Plane briefly hijacked in Mexico, all safe
Related Hot Topic: Latin America
Have your say: Latin America
Bible-carrying Jose Mar Flores Pereira was said by Mexican officials to have hijacked the Aeromexico Boeing 737 after it left from the popular tourist resort of Cancun on a flight to Mexico City.

He told authorities he had wanted to protect the country after he "had a revelation that Mexico was facing a great danger, and was threatened by an earthquake," public security official, Genaro Garcia Luna, said.

The alleged hijacker was said to be a former prisoner and drug addict from Bolivia, who has lived in Mexico for 17 years. But it was not immediately clear if he was helped by others as officials said five other people were arrested for security reasons.

Flores Pereira hinted that he was acting with two accomplices, "referring to himself (the Father), the Son and the Holy Spirit," Garcia Luna said.

All the people onboard the flight were safely evacuated at Mexico City, officials said, as security forces swarmed the capital's international airport within minutes of the plane landing.

Initial reports that the hijackers were carrying explosives were denied by Transport Secretary Juan Francisco Molinar Horcasitas who told local television there was no bomb on board.

The priest told reported that his act was linked to Wednesday's date, September 9, 2009 because the numbers 9/9/9 were the opposite of 6/6/6 the numbers associated with the AntiChrist.

Flores Pereira demanded to fly over the airport "seven times" and to speak with President Felipe Calderon, Garcia Luna said, adding the priest had warned he was carrying a explosive device, but in fact he was not.

Calderon canceled his afternoon meetings to head to the sprawling airport, after Aeromexico Flight 576 carrying 104 people was hijacked after leaving the eastern Mexican resort popular with American tourists.

"We only learned about it when we landed and we informed by the crew over the radio that we had been hijacked," said passenger Rodrigo Padilla. "Everything was very quiet, there were no guns, no shots were fired."

In less than an hour, the drama had been brought to an end.

"We intervened in this crisis and all the passengers were taken to safety. The security forces are now carrying out the necessary investigations," Horcasitas said.

None of the hijackers had been able to enter the plane's cockpit during the flight, neither "were they able to compromise the aircraft's safety," he added.

The US State Department said it was checking to see if any Americans were on board the hijacked flight and was seeking to obtain the manifest.

Television images showed chaotic scenes as the passengers, most dressed in shorts and T-shirts, descended from the plane, some carrying young children and clutching bags.

They were briefly made to sit on the tarmac by security forces, before being led away. The last to leave the plane was the captain, who had negotiated the release of the passengers with a woman air controller.

Bomb experts then moved in and were seen on the television carefully carrying out checks on the plane.

It was the first time the airline had suffered a hijacking since 1972, when leftist guerrillas seized one of its planes demanding the release of some of their fellow rebels. The release of the passengers was negotiated.

The last hijacking in the region was in April in Jamaica, when an armed man took over a CanJet Boeing 737 due to fly from Montego Bay to Cuba.

All 182 people on board the Canadian airliner were rescued unharmed when Jamaican police stormed the airliner and captured the mentally troubled gunman without firing a shot.

Source: http://uk.news.yahoo.com/18/20090910/twl-priest-on-divine-mission-hijacks-mex-4bdc673.html
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 8:09am On Sep 10, 2009
yawa-ti-de:
wow bigjoe. I wonder how long it would have taken if you opened up notepad and came up with the code yourself grin grin tongue cool huh undecided grin grin
I woulda done that but the problem here is that I dont know what his database USERS table and its fields were named.

If I can can say for sure now that his username field in db is named 'username' and password field named 'password', I would simply 'clone' a DW code for a login page for him.

But he is not even coming back. Just like most people here who come looking for help. They always bolt whenever help is about to come.
WebmastersRe: Dynamic Images In Dreamweaver by biggjoe(m): 6:41pm On Sep 09, 2009
like Yawatide will say, paste your code!

Again another quickie: if you are creating any dynamic stuffs in DW, you must create recordset.

But then paste your codes first.
WebmastersRe: The Login Page (in Drmwvr) by biggjoe(m): 6:33pm On Sep 09, 2009
like yawa said, paste your code!

But a quick advice i might give you is that authors of DW have somethings predefined.

If you are to create a login system you must name your session 'MM_username' for it to work unless you know how to tweak their codes.

It took me like six months to fathom that. grin
WebmastersRe: 104 Years Old Lady On Twitter by biggjoe(op): 4:33pm On Sep 08, 2009
Looks like the CNN publicity has further increased her followership.

She now has 32,563 followers!
WebmastersRe: 104 Years Old Lady On Twitter by biggjoe(op): 4:29pm On Sep 08, 2009
she is already on CNN, thats where I saw her first. They interviewed her this morning.

She is also a Facebooker.
WebmastersRe: Good Web Design Services in Nigeria? by biggjoe(m): 4:28pm On Sep 08, 2009
never knew there were a good number of web designers like these that visit webmasters board.

Why is it that you guys do not come out to help when anyone posts a technical problem.
FoodRe: Egusi Soup Vs Obgono Soup by biggjoe(m): 4:00pm On Sep 08, 2009
Am I the only who usually gets that 'throw up' sensation after eating a 'not well peppered ogbono' soup?

Egusi is the real soup any day and you dont have to worry too much about how well prepared it is?

Can you eat a badly prepared ogbono soup?
GamingRe: Nigerian Government Reacts To Sony's Playstation 3 Ad by biggjoe(m): 3:55pm On Sep 08, 2009
you guys are not getting it.

for me it is not about what they said, it is who that they are that said it.

If it is a simple opinion from a simple individual, it wouldnt have mattered at all but for a big company like sony to directly insult a country, it is  so uncool.

Take example from:
Obama's cabinet member resignation yesterday
Obama's pastors comments during his campaign
Dixie chicks comment on George bush

and many other  cases,

These things are what any other person can say and no one will even notice but when it is coming from the people it came from at the time they said it, its a whole different ball game.

Cant you see it?
Webmasters104 Years Old Lady On Twitter by biggjoe(op): 2:48pm On Sep 08, 2009
https://a1.twimg.com/profile_images/211358178/_AAN0007-2.jpg

http://twitter.com/IvyBean104

This lady is the oldest person on twitter and probably the oldest that uses internet.

She currently has 31,683 followers. I think im her lastest follower.

She will be celebrating her birthday this weekend.
WebmastersRe: Which State Website Is The Best? by biggjoe(m): 2:17pm On Sep 08, 2009
I just called the guy and informed him about that thumbnail 'malfunction'.

U never know, little things like that can ruin someone's career.

Phew!!
WebmastersRe: How Can I Link My Blogs To Adsense by biggjoe(m): 7:11pm On Sep 07, 2009
why not go to
www.google.com/adsense

and then log sign in with your google email and password.

From there you will do the rest,
WebmastersRe: GaniLivesOn.org - Comments by biggjoe(m): 1:47pm On Sep 07, 2009
Thats a great gesture from you Afam.

Gani's family or even Lagos govt. would love that idea so much, is there not a way of letting know about it?

---------------------------------------------------------------------
Looks like you use DW like myself.
PoliticsRe: Nigeria Most 'hated' Man by biggjoe(m): 1:27pm On Sep 04, 2009
@POSTER,
Why not add poll to this topic. It will yield an interesting result.

@topic,
to me, it should have been OBJ but, what has he done in 8 years that Yaradua has not done in 2 years.
WebmastersRe: Customize Sms Site by biggjoe(m): 10:01am On Sep 02, 2009
lets leave it all at that, ok.
2face will say: one love!
WebmastersRe: Customize Sms Site by biggjoe(m): 7:13pm On Sep 01, 2009
Afam,

It is now obvious that you took my earlier comments personal since you are now pointing out only your stance on the whole issue. It was never about you my brother. Infact your position on the issue was more balanced than others because you always wondered in your post where quad was to clear his name.
For reasons I cant get now you somehow believe I was attacking you.

I am not. So please quit the name calling. If I had said Afam 'is more at home with quadrillio' then I will understand why you are angry.

Your dislike for use of words like 'think' and 'likely' is not necessary here. EVen though i wonder whether you know that it is those words that lead to ground breaking discoveries especially when issues are being investigated. Again I never said that my comments are factual.

Im not fighting with you.
WebmastersRe: Customize Sms Site by biggjoe(m): 5:44pm On Sep 01, 2009
Afam:
The content in bold refers, this is a clear cut issue and not a matter of what you think or what is likely.

Stick to what happened please and stop trying to justify anything that you may have stated wrongly.

I don't owe either of the parties, I don't know either neither am I interested in protecting any.
I havent stated anything wrongly because I based my comments on a likely situations. Such situations can be right or wrong.
Unless your are talking of something else.
WebmastersRe: Customize Sms Site by biggjoe(m): 5:07pm On Sep 01, 2009
Im not trying to start anything at all. I respect you guys.
But tell me, would the posts have been the same if quad is fuming when someone else (perhaps one newcomer to NL) is claiming to have done what he did? I dont think the replies that followed would have been centered on him proving beyond doubts that he did it.
Its likely we will be asking the newcomer to bear the burden of proof instead.

Like I said b4, the heat was turned on her. She probably deserved it after her general comment but much attempt was not made to 'turn on some heat' on quadrillio too.

Like I said earlier, im not trying to start anything or side anyone. Its just that you cant contribute to any issue like this one without touching on the personalities involved.
WebmastersRe: Customize Sms Site by biggjoe(m): 4:34pm On Sep 01, 2009
It is true that Kinguche did not follow up her claims with enough facts to prove that she owns aratext but simply because we are more at home with quadrillio, many posters turned the heat on her, even though she made some general statement. Nobody will like that.

Now quadrillio has come out to 'clear the air' in all this but not very well to me.

Madam aratext has said that WALE has NO hands at all in aratext when she said:
KINGUCHE19:
OH NOT AT ALL. you r very free to list a site you work on, even if you did not do the entire stuff 100%. , BUT he never worked on aratext.
However WALE is insisting that
quadrillio:
is it a crime to list a site develop while u were working for a firm?
They are both far from resolving this issue. Thats my own take.
PoliticsRe: Notable Transporter, G.U. Okeke Kidnapped! by biggjoe(m): 6:47pm On Aug 25, 2009
babapupa:
Perpetrators = Igbo

Victims = Igbo



So what's your point again?
Who told you that the perpetrators are igbo?

WHere's your proof?

It was reported that armed robbers who shook awka yesterday had a rocket launcher and they were traced back to PH.

What do say about that.
WebmastersRe: Dreamweaver (php/mysql) Help by biggjoe(m): 7:45pm On Aug 19, 2009
afam4eva:
What do u mean by sluggish codes.
I was going to ask the same question too.

If you have gone through codes created by DW, you will see that their codes are written with security in mind.

the only shortcomings is that the dynamisms required on most sites today are not yet available in DW though im yet to use the CS version.
WebmastersRe: Dreamweaver (php/mysql) Help by biggjoe(m): 10:22am On Aug 18, 2009
sisqology:
Usin Dw and writing codes, which is better? @gurus
Knowing how to use DW is a big step for a starter but DW cannot do MOST things for you. You have to write your own codes sometimes.
WebmastersRe: Dreamweaver (php/mysql) Help by biggjoe(m): 9:42am On Aug 18, 2009
what I really dont understand on this NL webmasters forum is that people will come here and request for help but when you are about to help them they run and never come back to their own topic.

Na waaa oo!
WebmastersRe: Dreamweaver (php/mysql) Help by biggjoe(m): 9:04pm On Aug 17, 2009
I have been there before.

It is important to know if you have already created your database that has a field for username and password.

If you have done that and can connect to your database from Dreamweaver, then you are almost there.

Dreamweaver will help you do the rest.

So, have you created your DB and can connect to it from dreamweaver?
WebmastersRe: Controlling Cpanel With Php Scripts To Create Email, Dbase, Subdomains: by biggjoe(m): 7:06pm On Aug 13, 2009
allimercy:
Sometimes, the so called wise man is the foolish man, the bible confirmed that as well. The intention of a wicked man is always be revealed to God's own people.

I will stop here.
Like dhtml said before, if you want to post, post, stop talking in riddles.

We deal with codes here not riddles.

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