login  Naam:   Wachtwoord: 
Registreer je!
 Forum

aan elkaar

Offline BasDV - 17/05/2005 13:53
Avatar van BasDVMySQL interesse hallo,
ik heb dit:
  1. $huis = huis
  2. $stoep = stoep
  3. $alles = $huis + $stoep

nu wil ik dat $alles deze waarde heeft: huisstoep
dit is maar een voorbeeld maar doe ik dit zo goed?

11 antwoorden

Gesponsorde links
Offline MechaVore - 17/05/2005 13:54 (laatste wijziging 17/05/2005 13:56)
Avatar van MechaVore Gouden medaille

PHP gevorderde
nee, dan moet je het zo doen:
  1. <?
  2. $alles = $huis.$stoep;
  3. ?>
Alles = huisstoep

met spatie ertussen:
  1. <?
  2. $alles = $huis." ".$stoep;
  3. ?>
Alles = huis stoep

of het kan ook nog zo, maar dan komt de stoep in de variabele huis:
  1. <?
  2. $huis .= $stoep;
  3. ?>
Huis = huisstoep
Offline BasDV - 17/05/2005 13:59
Avatar van BasDV MySQL interesse want ik heb een upload script van sitemasters aangepast maar steeds krijg ik een foutmelding. heb ik jouw oplossing verkeerd neergezet of ligt het aan iets anders?
dit is de (aangepaste) code:
  1. <?php
  2. if(!empty($_POST)){
  3. $locatie="images/$memberid/"; //of een andere map, vergeet niet de w-rechten
  4. if(is_uploaded_file($_FILES['afbeelding']['tmp_name']))
  5. {
  6. //controleer grootte
  7. if($_FILES['afbeelding']['size']>15000)
  8. { //bepaal zelf de max. grootte in bytes
  9. echo "Het bestand is te groot";
  10. }
  11.  
  12. //controleer extensie, voeg maar andere toe
  13. if(!eregi("((.gif|.jpg)$)", $_FILES['afbeelding']['name']))
  14. {
  15. echo "het bestand is niet van het juiste type";
  16. }
  17.  
  18.  
  19. if(!move_uploaded_file($_FILES['afbeelding']['tmp_name'],
  20. $locatie.$_FILES['afbeelding']['name']))
  21.  
  22. {
  23. echo" het bestand kan niet worden verplaatst";
  24. }
  25.  
  26. echo "Uw bestand ".$_FILES['afbeelding']['name']." is nu uw Avatar.";
  27. $een = http://members.lycos.nl/tijgerbas3/PHPBBLZ/avatar/images/$memberid/
  28. $twee = $_FILES['afbeelding']['name']
  29. $locatie = $een.$twee
  30. $query ="UPDATE members SET avatar='$locatie' WHERE memberid = '$memberid'" or die(mysql_error());
  31. mysql_query($query);
  32.  
  33. }
  34.  
  35. else
  36. {
  37. echo "Het uploaden is mislukt";
  38. }
  39.  
  40.  
  41. }
  42. else{
  43. ?>
Offline MechaVore - 17/05/2005 14:00 (laatste wijziging 17/05/2005 14:01)
Avatar van MechaVore Gouden medaille

PHP gevorderde
je hebt het verkeerd neergezet 
regel 37 : $locatie = $een.$twee;
let op de ;

[edit]
Dat moet trouwens ook op regel 36
Offline BasDV - 17/05/2005 14:05
Avatar van BasDV MySQL interesse ik krijg telkens deze foutmelding:
"Parse error: parse error in /data/members/free/tripod/nl/t/i/j/tijgerbas3/htdocs/PHPBBLZ/avatar/index.php on line 162"

In deze pagina waar het staat: http://members..../index.php
Offline MechaVore - 17/05/2005 14:06 (laatste wijziging 17/05/2005 14:06)
Avatar van MechaVore Gouden medaille

PHP gevorderde
Geef regel 162 is.
Offline BasDV - 17/05/2005 14:08
Avatar van BasDV MySQL interesse hier is de hele pagina (en regel 162 is die met jouw code met $alles = $huis.$stoep)

  1. <script language="javascript" type="text/javascript">
  2. <!--
  3. /****************************************************
  4. Author: Eric King
  5. Url: http://redrival.com/eak/index.shtml
  6. This script is free to use as long as this info is left in
  7. Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
  8. ****************************************************/
  9. var win=null;
  10. function NewWindow(mypage,myname,w,h,scroll,pos){
  11. if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
  12. if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
  13. else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
  14. settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
  15. win=window.open(mypage,myname,settings);}
  16. // -->
  17. </script>
  18. <script language="javascript">
  19.  
  20. /*
  21. Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
  22. Permission granted to Dynamic Drive to feature script in archive
  23. For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
  24. */
  25.  
  26. var win = null;
  27. function NewWindow(mypage,myname,w,h,scroll){
  28. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  29. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  30. settings =
  31. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  32. win = window.open(mypage,myname,settings)
  33. }
  34.  
  35. </script>
  36. <?
  37.  
  38. require("../config.php");
  39.  
  40. if(!$login){
  41. ?>
  42.  
  43. <html>
  44.  
  45. <head>
  46. <meta http-equiv="Content-Language" content="nl">
  47. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  48. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  49. <meta name="ProgId" content="FrontPage.Editor.Document">
  50. <title>Avatar</title>
  51. <script language="javascript">
  52.  
  53. /*
  54. Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
  55. Permission granted to Dynamic Drive to feature script in archive
  56. For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
  57. */
  58.  
  59. var win = null;
  60. function NewWindow(mypage,myname,w,h,scroll){
  61. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  62. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  63. settings =
  64. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  65. win = window.open(mypage,myname,settings)
  66. }
  67.  
  68. </script>
  69. </head>
  70.  
  71.  
  72.  
  73.  
  74. <font size="1" face="Verdana">
  75.  
  76. Als je van deze service gebruik wilt maken moet je eerst inloggen of aanmelden als je nog niet lid bent.
  77. </font>
  78.  
  79. </font>
  80.  
  81. </html>
  82. <?
  83. }
  84. if($login AND session_is_registered('memberid')){
  85. $query = mysql_query("SELECT * FROM members WHERE memberid = '$memberid'");
  86.  
  87. while($object = mysql_fetch_object($query)){
  88. $gebruikersnaam = $object->gebruikersnaam;
  89. $priveberichten = $object->pm;
  90. $credits = $object->credits;
  91. }
  92.  
  93. $query = mysql_query("SELECT * FROM priveberichten WHERE naar = '$memberid'");
  94. $result = mysql_num_rows($query);
  95. ?>
  96.  
  97.  
  98. <html>
  99.  
  100. <head>
  101. <meta http-equiv="Content-Language" content="nl">
  102. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  103. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  104. <meta name="ProgId" content="FrontPage.Editor.Document">
  105. <title>Avatar</title>
  106. <script language="javascript">
  107.  
  108. /*
  109. Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
  110. Permission granted to Dynamic Drive to feature script in archive
  111. For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
  112. */
  113.  
  114. var win = null;
  115. function NewWindow(mypage,myname,w,h,scroll){
  116. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  117. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  118. settings =
  119. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  120. win = window.open(mypage,myname,settings)
  121. }
  122.  
  123. </script>
  124. </head>
  125.  
  126.  
  127.  
  128. <body link="black" vlink="black" alink="black">
  129. <font size="1" face="Verdana">
  130. <?php
  131. if(!empty($_POST)){
  132. $locatie="images/$memberid/"; //of een andere map, vergeet niet de w-rechten
  133. if(is_uploaded_file($_FILES['afbeelding']['tmp_name']))
  134. {
  135. //controleer grootte
  136. if($_FILES['afbeelding']['size']>15000)
  137. { //bepaal zelf de max. grootte in bytes
  138. echo "Het bestand is te groot";
  139. }
  140.  
  141. //controleer extensie, voeg maar andere toe
  142. if(!eregi("((.gif|.jpg)$)", $_FILES['afbeelding']['name']))
  143. {
  144. echo "het bestand is niet van het juiste type";
  145. }
  146.  
  147.  
  148. if(!move_uploaded_file($_FILES['afbeelding']['tmp_name'],
  149. $locatie.$_FILES['afbeelding']['name']))
  150.  
  151. {
  152. echo" het bestand kan niet worden verplaatst";
  153. }
  154.  
  155. echo "Uw bestand ".$_FILES['afbeelding']['name']." is nu uw Avatar.";
  156. $een = "http://members.lycos.nl/tijgerbas3/PHPBBLZ/avatar/images/$memberid/";
  157. $twee = "$_FILES['afbeelding']['name']";
  158. $locatie = "$een.$twee";
  159. $query ="UPDATE members SET avatar='$locatie' WHERE memberid = '$memberid'" or die(mysql_error());
  160. mysql_query($query);
  161.  
  162. }
  163.  
  164. else
  165. {
  166. echo "Het uploaden is mislukt";
  167. }
  168.  
  169.  
  170. }
  171. else{
  172. ?>
  173. <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data">
  174.  
  175. <input type="file" name="afbeelding"><br>
  176. <input type="submit" name="submit" value="Avatar Uploaden">
  177. </form>
  178.  
  179.  
  180. </font>
  181. </body>
  182. </html>
  183. <?php
  184. }
  185. }
  186. ?>
Offline MechaVore - 17/05/2005 14:10 (laatste wijziging 17/05/2005 14:13)
Avatar van MechaVore Gouden medaille

PHP gevorderde
Er moeten geen quotes omheen ..

  1. <?
  2. $twee = $_FILES['afbeelding']['name'];
  3. $locatie = $een.$twee;
  4. ?>
Offline BasDV - 17/05/2005 14:15
Avatar van BasDV MySQL interesse ik krijg nog steeds dezelfde fout
Offline MechaVore - 17/05/2005 14:22
Avatar van MechaVore Gouden medaille

PHP gevorderde
hier zo :

  1. <script language="javascript" type="text/javascript">
  2. <!--
  3. /****************************************************
  4. Author: Eric King
  5. Url: http://redrival.com/eak/index.shtml
  6. This script is free to use as long as this info is left in
  7. Featured on Dynamic Drive script library (http://
  8. www.dynamicdrive.com)
  9. ****************************************************/
  10. var win=null;
  11. function NewWindow(mypage,myname,w,h,scroll,pos){
  12. if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-
  13. w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-
  14. h)-75)):100;}
  15. if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/
  16. 2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
  17. else if((pos!="center" && pos!="random") ||
  18. pos==null){LeftPosition=0;TopPosition=20}
  19. settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
  20. win=window.open(mypage,myname,settings);}
  21. // -->
  22. </script>
  23. <script language="javascript">
  24.  
  25. /*
  26. Auto center window script- Eric King (http://redrival.com/eak/
  27. index.shtml)
  28. Permission granted to Dynamic Drive to feature script in archive
  29. For full source, usage terms, and 100's more DHTML scripts,
  30. visit http://dynamicdrive.com
  31. */
  32.  
  33. var win = null;
  34. function NewWindow(mypage,myname,w,h,scroll){
  35. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  36. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  37. settings =
  38. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  39. win = window.open(mypage,myname,settings)
  40. }
  41.  
  42. </script>
  43. <?
  44.  
  45. require("../config.php");
  46.  
  47. if(!$login){
  48. ?>
  49.  
  50. <html>
  51.  
  52. <head>
  53. <meta http-equiv="Content-Language" content="nl">
  54. <meta http-equiv="Content-Type" content="text/html;
  55. charset=windows-1252">
  56. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  57. <meta name="ProgId" content="FrontPage.Editor.Document">
  58. <title>Avatar</title>
  59. <script language="javascript">
  60.  
  61. /*
  62. Auto center window script- Eric King (http://redrival.com/eak/
  63. index.shtml)
  64. Permission granted to Dynamic Drive to feature script in archive
  65. For full source, usage terms, and 100's more DHTML scripts,
  66. visit http://dynamicdrive.com
  67. */
  68.  
  69. var win = null;
  70. function NewWindow(mypage,myname,w,h,scroll){
  71. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  72. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  73. settings =
  74. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  75. win = window.open(mypage,myname,settings)
  76. }
  77.  
  78. </script>
  79. </head>
  80.  
  81.  
  82.  
  83.  
  84. <font size="1" face="Verdana">
  85.  
  86. Als je van deze service gebruik wilt maken
  87. moet je eerst inloggen of aanmelden als je nog niet lid bent.
  88. </font>
  89.  
  90. </font>
  91.  
  92. </html>
  93. <?
  94. }
  95. if($login AND session_is_registered('memberid')){
  96. $query = mysql_query("SELECT * FROM members WHERE memberid =
  97. '$memberid'");
  98.  
  99. while($object = mysql_fetch_object($query)){
  100. $gebruikersnaam = $object->gebruikersnaam;
  101. $priveberichten = $object->pm;
  102. $credits = $object->credits;
  103. }
  104.  
  105. $query = mysql_query("SELECT * FROM priveberichten WHERE naar =
  106. '$memberid'");
  107. $result = mysql_num_rows($query);
  108. ?>
  109.  
  110.  
  111. <html>
  112.  
  113. <head>
  114. <meta http-equiv="Content-Language" content="nl">
  115. <meta http-equiv="Content-Type" content="text/html;
  116. charset=windows-1252">
  117. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  118. <meta name="ProgId" content="FrontPage.Editor.Document">
  119. <title>Avatar</title>
  120. <script language="javascript">
  121.  
  122. /*
  123. Auto center window script- Eric King (http://redrival.com/eak/
  124. index.shtml)
  125. Permission granted to Dynamic Drive to feature script in archive
  126. For full source, usage terms, and 100's more DHTML scripts,
  127. visit http://dynamicdrive.com
  128. */
  129.  
  130. var win = null;
  131. function NewWindow(mypage,myname,w,h,scroll){
  132. LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  133. TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  134. settings =
  135. 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  136. win = window.open(mypage,myname,settings)
  137. }
  138.  
  139. </script>
  140. </head>
  141.  
  142.  
  143.  
  144. <body link="black" vlink="black" alink="black">
  145. <font size="1" face="Verdana">
  146. <?php
  147. if(!empty($_POST)){
  148. $locatie="images/$memberid/"; //of een andere map, vergeet niet
  149. de w-rechten
  150. if(is_uploaded_file($_FILES['afbeelding']['tmp_name']))
  151. {
  152. //controleer grootte
  153. if($_FILES['afbeelding']['size']>15000)
  154. { //bepaal zelf de max. grootte in bytes
  155. echo "Het bestand is te groot";
  156. }
  157.  
  158. //controleer extensie, voeg maar andere toe
  159. if(!eregi("((.gif|.jpg)$)", $_FILES['afbeelding']['name']))
  160. {
  161. echo "het bestand is niet van het juiste
  162. type";
  163. }
  164.  
  165.  
  166. if(!move_uploaded_file($_FILES['afbeelding']['tmp_name'],
  167. $locatie.$_FILES['afbeelding']['name']))
  168.  
  169. {
  170. echo" het bestand kan niet worden verplaatst";
  171. }
  172.  
  173. echo "Uw bestand
  174. ".$_FILES['afbeelding']['name']." is nu uw Avatar.";
  175. $een = "http://members.lycos.nl/tijgerbas3/PHPBBLZ/avatar/images/
  176. $memberid/";
  177. $twee = $_FILES['afbeelding']['name'];
  178. $locatie = $een.$twee;
  179. $query ="UPDATE members SET avatar='$locatie' WHERE memberid =
  180. '$memberid'" or die(mysql_error());
  181. mysql_query($query);
  182.  
  183. }
  184.  
  185. else
  186. {
  187. echo "Het uploaden is mislukt";
  188. }
  189.  
  190.  
  191. }
  192. else{
  193. ?>
  194. <form method="post" action="<?php echo $_SERVER['PHP_SELF'];
  195. ?>" enctype="multipart/form-data">
  196.  
  197. <input type="file" name="afbeelding"><br>
  198. <input type="submit" name="submit" value="Avatar Uploaden">
  199. </form>
  200.  
  201.  
  202. </font>
  203. </body>
  204. </html>
  205. <?php
  206. }
  207. }
  208. ?>

en bij mij is regel 162 niet die ene regel..
Offline BasDV - 17/05/2005 14:43
Avatar van BasDV MySQL interesse Bedankt! Het uploaden gaat nu goed maar het opslaan in de MySQL database niet. hij hoort bij members onder avatar de url neer te zetten bij de rij van degene die ingelogd is maar dat doet hij niet.
Is er iets fout met de code of moet ik iets wijzigen in mijn mysql database bij avatar?
Offline BasDV - 17/05/2005 15:37
Avatar van BasDV MySQL interesse Hij doet het! Bedankt iedereen!
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.263s