Click here to Skip to main content
15,867,704 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Heading text alignment problem Pin
Mark F.10-Nov-13 5:16
Mark F.10-Nov-13 5:16 
AnswerRe: Heading text alignment problem Pin
Peter Leow11-Nov-13 17:49
professionalPeter Leow11-Nov-13 17:49 
GeneralRe: Heading text alignment problem Pin
Mark F.19-Nov-13 5:15
Mark F.19-Nov-13 5:15 
Questionuse MySQL's but as true || false Pin
Jassim Rahma7-Nov-13 12:47
Jassim Rahma7-Nov-13 12:47 
QuestionActiveX Control Permissions Pin
Richard Andrew x647-Nov-13 12:20
professionalRichard Andrew x647-Nov-13 12:20 
AnswerRe: ActiveX Control Permissions Pin
shalu_june1412-Nov-13 10:33
shalu_june1412-Nov-13 10:33 
Questioninsert variable from include file Pin
Jassim Rahma5-Nov-13 8:44
Jassim Rahma5-Nov-13 8:44 
QuestionThis webpage has a redirect loop Pin
Jassim Rahma4-Nov-13 23:46
Jassim Rahma4-Nov-13 23:46 
Hi,

Why I am getting the above error! it's making me crazy!

the url shown for this error on chrome is memberhome.php

I am not getting this error on my localhost but only getting it when I upload my website to the host

here is the code for it:

PHP
include 'includes/php_header.php';

// require 'PHPMailer/class.phpmailer.php';
// require 'twilio-php/Services/Twilio.php';
require 'includes/connect2db.php';

if (!isset($_SESSION["member_loggedOn"])) { exit(header("Location: signin")); }

// include 'includes/connect2db.php';
$mysql_command = "CALL sp_get_member_personal_information(:param_member_guid)";

$mysql_query = $mysql_connection->prepare($mysql_command);
$mysql_query->bindParam(':param_member_guid', $_SESSION["member_guid"], PDO::PARAM_STR);

$mysql_query->execute();

$mysql_row_count = $mysql_query->rowCount();

if ($mysql_row_count <= 0) { exit(header("Location: signin")); }

while ($mysql_row = $mysql_query->fetch())
{
    $member_title = $mysql_row["member_title_name"];
    $member_full_name = $mysql_row["first_name"] . ' ' . $mysql_row["middle_name"] . ' ' . $mysql_row["last_name"];
    $member_brief_introduction = $mysql_row["brief_introduction"];
}



Technology News @ www.JassimRahma.com

AnswerRe: This webpage has a redirect loop Pin
thatraja4-Nov-13 23:55
professionalthatraja4-Nov-13 23:55 
AnswerRe: This webpage has a redirect loop Pin
Kornfeld Eliyahu Peter5-Nov-13 0:03
professionalKornfeld Eliyahu Peter5-Nov-13 0:03 
GeneralRe: This webpage has a redirect loop Pin
Jassim Rahma5-Nov-13 0:09
Jassim Rahma5-Nov-13 0:09 
AnswerRe: This webpage has a redirect loop Pin
Kornfeld Eliyahu Peter5-Nov-13 0:16
professionalKornfeld Eliyahu Peter5-Nov-13 0:16 
Questioncustom url include in php Pin
Jassim Rahma4-Nov-13 23:03
Jassim Rahma4-Nov-13 23:03 
AnswerRe: custom url include in php Pin
thatraja5-Nov-13 2:24
professionalthatraja5-Nov-13 2:24 
QuestionGathering user computer information via web part/page Pin
BrentW824-Nov-13 6:15
BrentW824-Nov-13 6:15 
QuestionDisable Ajax Load On Wordpress Post Pin
Member 102891603-Nov-13 7:02
Member 102891603-Nov-13 7:02 
Questionhow to override the DC.title? Pin
Jassim Rahma3-Nov-13 0:22
Jassim Rahma3-Nov-13 0:22 
Questionbest way to save and use date Pin
Jassim Rahma2-Nov-13 1:08
Jassim Rahma2-Nov-13 1:08 
AnswerRe: best way to save and use date Pin
Richard MacCutchan2-Nov-13 6:02
mveRichard MacCutchan2-Nov-13 6:02 
GeneralRe: best way to save and use date Pin
Jassim Rahma2-Nov-13 7:28
Jassim Rahma2-Nov-13 7:28 
GeneralRe: best way to save and use date Pin
Richard MacCutchan2-Nov-13 7:40
mveRichard MacCutchan2-Nov-13 7:40 
Questionwhy getting: argument for routine is not a variable?! Pin
Jassim Rahma1-Nov-13 23:29
Jassim Rahma1-Nov-13 23:29 
QuestionMVC4 Ajax Call does not reach controller Pin
MYSHKSL1-Nov-13 10:43
MYSHKSL1-Nov-13 10:43 
SuggestionRe: MVC4 Ajax Call does not reach controller Pin
Richard Deeming1-Nov-13 10:51
mveRichard Deeming1-Nov-13 10:51 
Questionhow to header("Expires") in php Pin
Jassim Rahma1-Nov-13 8:42
Jassim Rahma1-Nov-13 8:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.