
justin7410
Members-
Posts
114 -
Joined
-
Last visited
Everything posted by justin7410
-
onUnload="" function does not seem to work
justin7410 replied to justin7410's topic in Javascript Help
Hey man, thanks for the great help, but tell something. What is the window object ? and why is it i have to do this instead of putting it directly on the body tag as i was doing ? if that was the case then wouldnt the onLoad element face the same issue ?- 4 replies
-
- javascript
- event handler
-
(and 1 more)
Tagged with:
-
hey guys, so i am messing around with some simple JS, and i was using the onLoad & onUnload handlers. i can easily get the onLoad=(function) to work properly, yet when it comes to getting the onUnload to work when i close the window or refresh the site, noting seems to work <script> function alert1(){ alert("Welcome to the page, enjoy"); } function aler02(){ alert("Thanks for visiting, goodbye"); } </script> <body onLoad="alert01();" onUnload="alert02();"> <p> This is text </p> </body> again when i open the site, it works just fine and as expected. when i close or refresh i expect an alert to let me know i am leaving, yet nothing. any suggestions ?
- 4 replies
-
- javascript
- event handler
-
(and 1 more)
Tagged with:
-
i am sorry , i am a somewhat noob when it comes to PHP , can you elaborate a bit what you mean by a DirectoryIndex ? i also link to my index.php ( for ex : if i have a website logo and a user clicks on the logo, it should take the user back to the index.php, which is your homepage.) my index.php is located in my www directory
-
Yes i would love to show you the sourced code for the issue. one of the head scratching things about this issue is, this file you see in the OP is the live website .htaccess file. So for showing you what i have and dont have, that is basically the "whole enchilada" sort of speak. If you have any suggestions as to why there is hidden code in the .htaccess file ? i have tried to edit it through both cpanel ( legacy file manager) & notepad++ , both show the OP code. thanks again man
-
Hey, Thanks for the reply ! your post was very helpful but not quite as helpful as i needed. i dont think i stated my issue clearly. i want index.php to be the file that is being directed to, but while index is being directed to , using .htaccess you can redirect the index file to your main page without showing the file name. using MultiViews only removes the extension of .php not the file name. I thought using IndexIgnore * or -Indexes would accomplish what i was trying to do with that issue. Yet, nothing happens for either, im still directed to the index file with index showing. My main issue of www. not showing up in my URL is what i really want an answer to or solution if anyone can help. just look at the OP and you will get a better idea of the issue at hand. thanks
-
Hey guys, i have a .htaccess file that i am trying to modify. apparently i modified this before to remove extensions from being necessary ( i.e .php) then i made a modification to remove the www from the URL so that it would be strictly http://websitenamehere.com this did not work and i tried to remove the code from the .htaccess file, as you will see there is no code now for this. Yet, when go to the site it works and shows its SERP as websitename.com. this is extremely frustrating and looks very amateurish. .HTACCESS FILE RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /profile.php?username=$1 # ---- Establish a custom 404 ErrorDocument 404 /filenotfound.php # ---- Prevent directory file listing index IndexIgnore * # ---- Make Pages render with no ext Options +Multiviews AuthName "websitename.com" AuthUserFile "/home/websitename/.htpasswds/public_html/passwd" also on a side issue if anyone has any input, how can i remove the .index extension from showing, i want to to a redirect from the .htaccess file, where instead of index.php it would just show the domain.name. Thank a bunch guys, any suggestions or help would be great.
-
Hey guys, i am working on my site , and i have a global conditional that is pretty simple in what i want it to do , i have 4 variables that are not always set, i am writing an if elseif statement to see if whichever variable is used to then continue to its specified query/ if ($current_file == 'profile.php') { $mid = $_GET['male_id']; $fid = $_GET['female_id']; $serid = $_GET['series_id']; $id = $_GET['id']; if(isset($mid) === true){ $query = "SELECT * FROM `content` WHERE `id` = $mid"; }elseif (isset($sid) === true) { $query = "SELECT * FROM `content` WHERE `id` = $sid"; }elseif(isset($serid) === true){ $query = "SELECT * FROM `content` WHERE `id` = $serid"; }elseif(isset($id) === true){ $query = "SELECT * FROM `content` WHERE `id` = $id"; } $info = mysql_query($query); while($row = mysql_fetch_assoc($info)){ extract($row); } } now the conditional works fine , in terms of the query working and grabbing the desired data and parlaying that data onto the site. My issue is simply , i want to leave error reporting on for my users, so that if there are errors or problems i dont know of , server side , they can report this to me. When i do this, i get : any explanation as to why this is happening ? edit: i understand as to "why" , the variable that is the $_GET is now set to $sid , and the 3 other variables are not defined with since they are not in the URL. should i set the variables deeper into the conditional ? are they too global to where the entire if statement which is looking for current file and need to be set in their own if statements ? also , any suggestions on how to alter my code to provide the same results without the notice being portrayed ? much appreciated guys
-
sorry i misread completely sorry for the post above. the syntax is correct and i thought as much, what i am trying to do essentially is quite simple i thought. i am trying to sort my results given from my $query( see OP ) to bring back the results by ORDER OF, of 2 separate fields in the DB. i want it to return ORDER BY `votes`, `release_date`. which i am pretty certain my original query should be returning, but only sorts by the first field in the conditional. as for your original reply, thank you, that was more helpful than i had originally thought. When i said i was having issues with AND/OR statements, i was referring to an issue i had posted, but i was already quite clear on what is needed for SQL statements, more so just confused as why im not getting the results i was hoping for. thanks again req i look forward to more feedback
-
I apologize but how is this pertaining to ORDER BY argument from what i see your only addressing something that i already understand with AND / OR conditional , i am simply confused on ORDER BY sequence. thanks again.
-
I have a pretty beginner's question, but cant seem to get this right with what i try. I had the same problem with using LIKE and OR with multiple fields and queries. essentially i just want to ORDER BY using multiple fields i have in the DB. my query is something like this $query = "SELECT * FROM content WHERE rating > 7 ORDER BY `votes` DESC, `release_date` DESC "; now i understand with LIKE and OR you must separate arguments with (), but with ORDER BY i am not using any AND / OR so i though a comma should be sufficient. Yet, i can never seem to get this work properly. any suggestions to get both fields to ORDER BY ? thanks guys
-
Issues trying: Multiple LIKES && ORDER BY multiple values
justin7410 replied to justin7410's topic in MySQL Help
Thanks man, great answer just what i was thinking but thanks for putting it in writing. also i tried your no %% for the wildcard for DATE field. which i am pretty sure it is with the format of yyyy-mm-dd but that gave me a failed query, with the %% it worked just fine. other than that, thanks for the great answer sir- 3 replies
-
- mysql
- phpmyadmin
-
(and 3 more)
Tagged with:
-
hey guys, i have a MySQL query that has multiple LIKE wildcard statement and multiple ORDER BY statements. "SELECT * FROM `content` WHERE `release_date` LIKE '%2013-06%' OR `release_date` LIKE '%2013-05%' OR `release_date` LIKE '%2013-04%' AND `release_country` = 'USA' AND `is_active_member` = 1 ORDER BY `votes' DESC, `release_date` DESC LIMIT 0 , 50" as you can see i have 3 wildcard's 5 total conditionals 2 ORDER BY fields The ISSUE: my wildcard statements work just fine and filters what i need, everything after ( release_country, is_active_member) dont seem to filter, also my ORDER BY only passes the first conditional. and release_date is not sorted. i have done plenty of research to see if there are other formats to this( which there is ) but they also don't seem to work. The data and field names are correct, and when i place the other fields first, they come out correctly. but i cant get this exact query to work. any suggestions as why this is happening ? thanks guys
- 3 replies
-
- mysql
- phpmyadmin
-
(and 3 more)
Tagged with:
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
Ok so after a few days of playing around. i figured that file_exists() is a horrible way to get this done. the more images per page you have the longer it will take the page to process. i realized that in the database there is an image_key field that has it own set value. the ones missing a value are the ones missing an image + the database has not been synced so any member past $id < $num has no image. so i then created a conditional with an if statement function load_content_images($id,$url,$image_key) { $id = md5($id); $url = ''; $num = 230467 if(strlen($image_key) < 2 || $id > $num) { $url = 'img/image_not_found.jpg'; } else { $url = 'http://s3.amazonaws.com/fast-network/photos/' .$id .'.jpg'; } return $url; and this actually worked, except for some reason, the wrong images are being replaced. images with missing data are still showing and the id of some profiles lower than the set $num are missing i am thinking i am on the right track, just having some issues with the arguments. any suggestions would be great- 11 replies
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
how would i be able to check if my server has allow_url_fopen ? can i access this in my phpinfo ? edit: so i checked this info under my phpinfo and it is on, if that makes any difference to the issue- 11 replies
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
hey david, thanks for the great feedback, unfortunately i tried exactly this also but all the images return as false and are replaced with the new image. when i used file_exists with my own conditional i was just getting it to return all true, and it wouldnt replace any.- 11 replies
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
Well i understand what the logic is to do what i want. again, i am more so confused with the function to be able to see if an image is being loaded. so if the image is returning false from the cloud server then it would replace the image with the conditional. any suggestions on how to approach the actual if part of the statement if (image is not returning) { replace image with new image } else continue if this was a file in my own server uploaded through FTP i think string functions would be the answer. i am just confused since the img src in a dynamic link. i cant figure out how to check if the source is null just wanted to add, that when an image is not found through amazon cloud you get an access denies message on the url. is there any way to set the conditional to see if access if denied then give the default image im guessing there is an easier way to check to see if the image is being returned though :/. thanks guys- 11 replies
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
function load_content_images($id) { $id = md5($id); return 'http://s3.amazonaws.com/fast-network/photos/' .$id .'.jpg'; } function list_profile ($is_name, $id, $year,$is_male) { if ($is_male == true) { echo '<li>'; echo '<div class="pic_profile"><a href="profile.php?profile=' .$is_name . '&id=' .$id .'"><img src="' .load_content_images($id).'" alt=' .$is_m_title .'('.$year.')="" width="90" height="130"></a></div>'; echo '<div class="text_banner_top"><a href="profile.php?profie=' .$is_name . '&id=' .$id .'">' .$is_name. '(2013)</a></div>'; echo '</li>'; }if ($is_female == true) { echo '<li>'; echo '<div class="pic_profile"><a href="profile.php?profile=' .$is_name . '&id=' .$id .'"><img src="' .load_content_images($id).'" alt=' .$is_m_title .'('.$year.')="" width="90" height="130"></a></div>'; echo '<div class="text_banner_top"><a href="profile.php?profie=' .$is_name . '&id=' .$id .'">' .$is_name. '(2013)</a></div>';/div>'; echo '</li>'; } } as you can see the image src = the function that takes the matching ID of the user and the hash password of the user , and grabs the appropriate image for user. problem is as i stated, some users don't upload an image, and the image appears blank with a red x. so to answer your question, yes the file is missing and now i wan't the logic of. if (file is mising) { display a different imag src } else continue the normal process.- 11 replies
-
Best way to approach missing image in database
justin7410 replied to justin7410's topic in PHP Coding Help
yea i figured as much, but i cant see how an if statement would be written to see if a file is returning as null or not null i understand what your trying to tell the pc to do but as how to word it for the server to see if the image has loaded or not loaded then for that if statement to then switch the image to the other image output. i am struggling more so with how to write the logic for this , more so than as to what the logic actually is. any suggestions ?- 11 replies
-
Hey guys, so i have a website that has info outputted from my database. the data is users that are signed up right now lets say i have 10000 users each linked with their own image to their profile from amazon cloud based system. Unfortunately, 20 percent of my users don't have an image, and their box shows a missing image box. What i want to do until the user submits or a image is available, is to use my own image stating that the "image is not available". i just want to know what is the best approach to get this to work. is the done with an if statement ? i just am drawing a blank. any suggestions ? much appreciated.
- 11 replies
-
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
mac_gyver, you are the man! . that was it. i really appreciate the feedback and suggestions, i dont think i would have ever guessed that was the problem. much props to you sir -
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
i tried using validator, but i was met with an error telling me that the page i am submitting can not be read due to the server i am working on not being compatible with the service. i agree with your assessment of the issue, when looking at my form, the form tags are inside the table tags though. is there something i just am not seeing ? here is my complete form : <table style="margin-left:10px; margin-top:10px; margin-bottom:10px;"> <form name="register" action="register.php" method="post"> <tbody><tr> <td class="register_td_left"><span class="">Email Address:</span></td> <td class="register_td_right" colspan="2"><input type="email" name="register_email" size="35" maxlength="50" value=""></td> </tr> <tr><td class="register_td_left"></td><td class="extra_data" colspan="2"><font color="#FFCC00" style="background-color:#000000; text-decoration:blink;"><b> Validation Required </b></font></td></tr> <tr> <td class="register_td_left"><span class="">Username:</span></td> <td class="register_td_right" colspan="2"><input type="text" name="register_username" size="35" maxlength="15" value=""></td> </tr> <tr> <td class="register_td_left"></td> <td class="extra_data" colspan="2">Your username can only contain letters A-Z or numbers 0-9</td> </tr> <tr> <td class="register_td_left"><span class="">Password:</span></td> <td class="register_td_right" colspan="2"><input type="password" name="password" size="35" maxlength="15" class="password"></td> </tr> <tr> <td class="register_td_left"><span class="">Confirm Pass:</span></td> <td class="register_td_right" colspan="2"><input type="password" name="confirm_pass" size="35" maxlength="15"></td> </tr> <tr> <tr> <td class="register_td_left"></td> <td class="extra_data" colspan="2">Your password must be more than 6 characters A-Z or 0-9</td> </tr> <tr> <td class="register_td_left"><span class="">Gender:</span></td> <td class="register_td_right" colspan="2"> <input id="male" name="gender" type="radio" value="m"><label for="male"> Male</label> <input id="female" name="gender" type="radio" value="f"><label for="female"> Female</label> </td> </tr> <tr> <td class="register_td_left"></td><td class="extra_data2" colspan="2"> </td> </tr> <tr> <td class="register_td_left"></td><td class="extra_data2" colspan="2"> </td> </tr> <tr> <td class="register_td_left"><span class="">Date of Birth:</span></td> <td class="register_td_right" colspan="2"><select name="month" id="month" style="width:100px"><option value="">---</option><option value="1">January</option><option value="2">February</option><option value="3">March</option><option value="4">April</option><option value="5">May</option><option value="6">June</option><option value="7">July</option><option value="8">August</option><option value="9">September</option><option value="10">October</option><option value="11">November</option><option value="12">December</option></select><select name="date" id="date" style="width:45px"><option value="">---</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option><option value="21">21</option><option value="22">22</option><option value="23">23</option><option value="24">24</option><option value="25">25</option><option value="26">26</option><option value="27">27</option><option value="28">28</option><option value="29">29</option><option value="30">30</option><option value="31">31</option></select><select name="year" id="reg-year" style="width:60px"><option value="">---</option><option value="2016">2016</option><option value="2015">2015</option><option value="2014">2014</option><option value="2013">2013</option><option value="2012">2012</option><option value="2011">2011</option><option value="2010">2010</option><option value="2009">2009</option><option value="2008">2008</option><option value="2007">2007</option><option value="2006">2006</option><option value="2005">2005</option><option value="2004">2004</option><option value="2003">2003</option><option value="2002">2002</option><option value="2001">2001</option><option value="2000">2000</option><option value="1999">1999</option><option value="1998">1998</option><option value="1997">1997</option><option value="1996">1996</option><option value="1995">1995</option><option value="1994">1994</option><option value="1993">1993</option><option value="1992">1992</option><option value="1991">1991</option><option value="1990">1990</option><option value="1989">1989</option><option value="1988">1988</option><option value="1987">1987</option><option value="1986">1986</option><option value="1985">1985</option><option value="1984">1984</option><option value="1983">1983</option><option value="1982">1982</option><option value="1981">1981</option><option value="1980">1980</option><option value="1979">1979</option><option value="1978">1978</option><option value="1977">1977</option><option value="1976">1976</option><option value="1975">1975</option><option value="1974">1974</option><option value="1973">1973</option><option value="1972">1972</option><option value="1971">1971</option><option value="1970">1970</option><option value="1969">1969</option><option value="1968">1968</option><option value="1967">1967</option><option value="1966">1966</option><option value="1965">1965</option><option value="1964">1964</option><option value="1963">1963</option><option value="1962">1962</option><option value="1961">1961</option><option value="1960">1960</option><option value="1959">1959</option><option value="1958">1958</option><option value="1957">1957</option><option value="1956">1956</option><option value="1955">1955</option><option value="1954">1954</option><option value="1953">1953</option><option value="1952">1952</option><option value="1951">1951</option><option value="1950">1950</option><option value="1949">1949</option><option value="1948">1948</option><option value="1947">1947</option><option value="1946">1946</option><option value="1945">1945</option><option value="1944">1944</option><option value="1943">1943</option><option value="1942">1942</option><option value="1941">1941</option><option value="1940">1940</option><option value="1939">1939</option><option value="1938">1938</option><option value="1937">1937</option><option value="1936">1936</option><option value="1935">1935</option><option value="1934">1934</option><option value="1933">1933</option><option value="1932">1932</option><option value="1931">1931</option><option value="1930">1930</option><option value="1929">1929</option><option value="1928">1928</option><option value="1927">1927</option><option value="1926">1926</option><option value="1925">1925</option><option value="1924">1924</option><option value="1923">1923</option><option value="1922">1922</option><option value="1921">1921</option><option value="1920">1920</option><option value="1919">1919</option><option value="1918">1918</option><option value="1917">1917</option><option value="1916">1916</option><option value="1915">1915</option><option value="1914">1914</option><option value="1913">1913</option><option value="1912">1912</option><option value="1911">1911</option><option value="1910">1910</option><option value="1909">1909</option><option value="1908">1908</option><option value="1907">1907</option><option value="1906">1906</option><option value="1905">1905</option><option value="1904">1904</option><option value="1903">1903</option><option value="1902">1902</option><option value="1901">1901</option><option value="1900">1900</option><option value="1899">1899</option><option value="1898">1898</option><option value="1897">1897</option><option value="1896">1896</option></select></td> </tr> <tr> <td class="register_td_left"></td><td class="extra_data2" colspan="2"> </td> </tr> <tr> <td class="register_td_left"><span class="">Country:</span></td> <td class="register_td_right" colspan="2"> <div><select name="country" style="width:250px;"> <option value="" selected = "selected">---</option> <option value="AF">Afghanistan</option> <option value="AL">Albania</option> <option value="DZ">Algeria</option> <option value="AS">American Samoa</option> <option value="AD">Andorra</option> <option value="AO">Angola</option> <option value="AI">Anguilla</option> <option value="AQ">Antarctica</option> <option value="AG">Antigua and Barbuda</option> <option value="AR">Argentina</option> <option value="AM">Armenia</option> <option value="AW">Aruba</option> <option value="AU">Australia</option> <option value="AT">Austria</option> <option value="AZ">Azerbaijan</option> <option value="BS">Bahamas</option> <option value="BH">Bahrain</option> <option value="BD">Bangladesh</option> <option value="BB">Barbados</option> <option value="BY">Belarus</option> <option value="BE">Belgium</option> <option value="BZ">Belize</option> <option value="BJ">Benin</option> <option value="BM">Bermuda</option> <option value="BT">Bhutan</option> <option value="BO">Bolivia</option> <option value="BA">Bosnia and Herzegovina</option> <option value="BW">Botswana</option> <option value="BV">Bouvet Island</option> <option value="BR">Brazil</option> <option value="IO">British Indian Ocean Territory</option> <option value="BN">Brunei Darussalam</option> <option value="BG">Bulgaria</option> <option value="BF">Burkina Faso</option> <option value="BI">Burundi</option> <option value="KH">Cambodia</option> <option value="CM">Cameroon</option> <option value="CA">Canada</option> <option value="CV">Cape Verde</option> <option value="KY">Cayman Islands</option> <option value="CF">Central African Republic</option> <option value="TD">Chad</option> <option value="CL">Chile</option> <option value="CN">China</option> <option value="CX">Christmas Island</option> <option value="CC">Cocos (Keeling) Islands</option> <option value="CO">Colombia</option> <option value="KM">Comoros</option> <option value="CG">Congo</option> <option value="CD">Congo, the Democratic Republic of the</option> <option value="CK">Cook Islands</option> <option value="CR">Costa Rica</option> <option value="CI">Cote D'Ivoire</option> <option value="HR">Croatia</option> <option value="CU">Cuba</option> <option value="CY">Cyprus</option> <option value="CZ">Czech Republic</option> <option value="DK">Denmark</option> <option value="DJ">Djibouti</option> <option value="DM">Dominica</option> <option value="DO">Dominican Republic</option> <option value="EC">Ecuador</option> <option value="EG">Egypt</option> <option value="SV">El Salvador</option> <option value="GQ">Equatorial Guinea</option> <option value="ER">Eritrea</option> <option value="EE">Estonia</option> <option value="ET">Ethiopia</option> <option value="FK">Falkland Islands (Malvinas)</option> <option value="FO">Faroe Islands</option> <option value="FJ">Fiji</option> <option value="FI">Finland</option> <option value="FR">France</option> <option value="GF">French Guiana</option> <option value="PF">French Polynesia</option> <option value="TF">French Southern Territories</option> <option value="GA">Gabon</option> <option value="GM">Gambia</option> <option value="GE">Georgia</option> <option value="DE">Germany</option> <option value="GH">Ghana</option> <option value="GI">Gibraltar</option> <option value="GR">Greece</option> <option value="GL">Greenland</option> <option value="GD">Grenada</option> <option value="GP">Guadeloupe</option> <option value="GU">Guam</option> <option value="GT">Guatemala</option> <option value="GN">Guinea</option> <option value="GW">Guinea-Bissau</option> <option value="GY">Guyana</option> <option value="HT">Haiti</option> <option value="HM">Heard Island and Mcdonald Islands</option> <option value="VA">Holy See (Vatican City State)</option> <option value="HN">Honduras</option> <option value="HK">Hong Kong</option> <option value="HU">Hungary</option> <option value="IS">Iceland</option> <option value="IN">India</option> <option value="ID">Indonesia</option> <option value="IR">Iran</option> <option value="IQ">Iraq</option> <option value="IE">Ireland</option> <option value="IL">Israel</option> <option value="IT">Italy</option> <option value="JM">Jamaica</option> <option value="JP">Japan</option> <option value="JO">Jordan</option> <option value="KZ">Kazakhstan</option> <option value="KE">Kenya</option> <option value="KI">Kiribati</option> <option value="KP">Korea, Democratic People's Republic of</option> <option value="KR">Korea, Republic of</option> <option value="KW">Kuwait</option> <option value="KG">Kyrgyzstan</option> <option value="LA">Lao People's Democratic Republic</option> <option value="LV">Latvia</option> <option value="LB">Lebanon</option> <option value="LS">Lesotho</option> <option value="LR">Liberia</option> <option value="LY">Libyan Arab Jamahiriya</option> <option value="LI">Liechtenstein</option> <option value="LT">Lithuania</option> <option value="LU">Luxembourg</option> <option value="MO">Macao</option> <option value="MK">Macedonia, the Former Yugoslav Republic of</option> <option value="MG">Madagascar</option> <option value="MW">Malawi</option> <option value="MY">Malaysia</option> <option value="MV">Maldives</option> <option value="ML">Mali</option> <option value="MT">Malta</option> <option value="MH">Marshall Islands</option> <option value="MQ">Martinique</option> <option value="MR">Mauritania</option> <option value="MU">Mauritius</option> <option value="YT">Mayotte</option> <option value="MX">Mexico</option> <option value="FM">Micronesia, Federated States of</option> <option value="MD">Moldova, Republic of</option> <option value="MC">Monaco</option> <option value="MN">Mongolia</option> <option value="MS">Montserrat</option> <option value="MA">Morocco</option> <option value="MZ">Mozambique</option> <option value="MM">Myanmar</option> <option value="NA">Namibia</option> <option value="NR">Nauru</option> <option value="NP">Nepal</option> <option value="NL">Netherlands</option> <option value="AN">Netherlands Antilles</option> <option value="NC">New Caledonia</option> <option value="NZ">New Zealand</option> <option value="NI">Nicaragua</option> <option value="NE">Niger</option> <option value="NG">Nigeria</option> <option value="NU">Niue</option> <option value="NF">Norfolk Island</option> <option value="MP">Northern Mariana Islands</option> <option value="NO">Norway</option> <option value="OM">Oman</option> <option value="PK">Pakistan</option> <option value="PW">Palau</option> <option value="PS">Palestinian Territory, Occupied</option> <option value="PA">Panama</option> <option value="PG">Papua New Guinea</option> <option value="PY">Paraguay</option> <option value="PE">Peru</option> <option value="PH">Philippines</option> <option value="PN">Pitcairn</option> <option value="PL">Poland</option> <option value="PT">Portugal</option> <option value="PR">Puerto Rico</option> <option value="QA">Qatar</option> <option value="RE">Reunion</option> <option value="RO">Romania</option> <option value="RU">Russian Federation</option> <option value="RW">Rwanda</option> <option value="SH">Saint Helena</option> <option value="KN">Saint Kitts and Nevis</option> <option value="LC">Saint Lucia</option> <option value="PM">Saint Pierre and Miquelon</option> <option value="VC">Saint Vincent and the Grenadines</option> <option value="WS">Samoa</option> <option value="SM">San Marino</option> <option value="ST">Sao Tome and Principe</option> <option value="SA">Saudi Arabia</option> <option value="SN">Senegal</option> <option value="CS">Serbia and Montenegro</option> <option value="SC">Seychelles</option> <option value="SL">Sierra Leone</option> <option value="SG">Singapore</option> <option value="SK">Slovakia</option> <option value="SI">Slovenia</option> <option value="SB">Solomon Islands</option> <option value="SO">Somalia</option> <option value="ZA">South Africa</option> <option value="GS">South Georgia and the South Sandwich Islands</option> <option value="ES">Spain</option> <option value="LK">Sri Lanka</option> <option value="SD">Sudan</option> <option value="SR">Suriname</option> <option value="SJ">Svalbard and Jan Mayen</option> <option value="SZ">Swaziland</option> <option value="SE">Sweden</option> <option value="CH">Switzerland</option> <option value="SY">Syrian Arab Republic</option> <option value="TW">Taiwan</option> <option value="TJ">Tajikistan</option> <option value="TZ">Tanzania, United Republic of</option> <option value="TH">Thailand</option> <option value="TL">Timor-Leste</option> <option value="TG">Togo</option> <option value="TK">Tokelau</option> <option value="TO">Tonga</option> <option value="TT">Trinidad and Tobago</option> <option value="TN">Tunisia</option> <option value="TR">Turkey</option> <option value="TM">Turkmenistan</option> <option value="TC">Turks and Caicos Islands</option> <option value="TV">Tuvalu</option> <option value="UG">Uganda</option> <option value="UA">Ukraine</option> <option value="AE">United Arab Emirates</option> <option value="GB">United Kingdom</option> <option value="US">United States</option> <option value="UM">United States Minor Outlying Islands</option> <option value="UY">Uruguay</option> <option value="UZ">Uzbekistan</option> <option value="VU">Vanuatu</option> <option value="VE">Venezuela</option> <option value="VN">Viet Nam</option> <option value="VG">Virgin Islands, British</option> <option value="VI">Virgin Islands, U.s.</option> <option value="WF">Wallis and Futuna</option> <option value="EH">Western Sahara</option> <option value="YE">Yemen</option> <option value="ZM">Zambia</option> <option value="ZW">Zimbabwe</option> </select></div><br> </td> </tr> <tr> <td class="register_td_left2"><span class="">Security Code:</span></td> <td valign="middle" style="padding-left:2px"> <?php require_once 'recaptchalib.php'; $publickey = "6Lf5AeASAAAAAPue6LLdUDttmPDc-NbRHcn4RCh5"; // you got this from the signup page echo recaptcha_get_html($publickey); ?> </td> </tr> <tr> <td class="register_td_left"></td><td class="extra_data2" colspan="2"> <input id="agreement" type="checkbox" name="agreement" checked="unchecked" value="agree"> <label for="agreement"> - <span class="">I agree to the </span></label><a href="/terms_of_use.php" target="_blank">terms of use</a>. </td> </tr> <tr><td class="register_td_left"></td><td class="extra_data2" colspan="2"><input class="register-button" type="submit" name="register" value="Register my FREE account"></td></tr> </tbody></form></table> -
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
when adding the same echo '<pre>',print_r($resp),'</pre>'; ReCaptchaResponse Object ( [is_valid] => [error] => incorrect-captcha-sol ) 1 -
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
<tr> <td class="register_td_left2"><span class="">Security Code:</span></td> <td valign="middle" style="padding-left:2px"> <input id="recaptcha" name="recaptcha" <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6Lf5AeASAAAAAPue6LLdUDttmPDc-NbRHcn4RCh5"></script> <noscript> <iframe src="http://www.google.com/recaptcha/api/noscript?k=6Lf5AeASAAAAAPue6LLdUDttmPDc-NbRHcn4RCh5" height="300" width="500" frameborder="0"></iframe><br/> <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/> </noscript>> </td> </tr> -
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
i cant figure out how to get the keys to post with the form -
Google recaptcha problem trying to integrate into my own system
justin7410 replied to justin7410's topic in PHP Coding Help
Notice: Undefined index: recaptcha_challenge_field in /home/justin/public_html/register.php on line 10 Notice: Undefined index: recaptcha_response_field in /home/justin/public_html/register.php on line 11 Array ( [register_email] => [email protected] [register_username] => anti4000 [password] => justin [confirm_pass] => justin [gender] => f [month] => 1 [date] => 1 [year] => 2016 [country] => AF [agreement] => agree [register] => Register my FREE account )