Hyperlink variabele
www.zijnsite.nl) deze wordt zichtbaar op een pagina en nu is het de bedoeling dat dit een hyperlink wordt naar zijn site.
Het voorbeeld is deze:
en website moet dan de hyperlink worden naar zijn site.
kan iemand mij daar mee helpen?
Alvast bedankt.
Hallo ik heb een probleem hoe ik een variabele kan doorlinken naar zijn website, m.a.w. de client stuurt zijn gegevens inclusief website naar de mysql database (hier in komt te staan Het voorbeeld is deze:
en website moet dan de hyperlink worden naar zijn site.
kan iemand mij daar mee helpen?
Alvast bedankt.
Gewijzigd op 01/01/1970 01:00:00 door Marco Fijn
H. schreef op 16.04.2008 14:49:
Helaas dat werkt niet, de mensen vullen hun website dit komt ook in beeld maar als ik de a href ervoor doe dan verdwijnt www.zijnsite.nl
Kan je misschien wat meer code posten, want op deze manier zou het gewoonlijks moeten werken!
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_horeca_alkmaar, $horeca_alkmaar);
$query_uitbater = "SELECT gelegenheid, naam, foto, omschrijving, website FROM uitbater WHERE gelegenheid = 'cafe' ORDER BY id ASC";
$uitbater = mysql_query($query_uitbater, $horeca_alkmaar) or die(mysql_error());
$row_uitbater = mysql_fetch_assoc($uitbater);
$totalRows_uitbater = mysql_num_rows($uitbater);
?>
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_horeca_alkmaar, $horeca_alkmaar);
$query_uitbater = "SELECT gelegenheid, naam, foto, omschrijving, website FROM uitbater WHERE gelegenheid = 'cafe' ORDER BY id ASC";
$uitbater = mysql_query($query_uitbater, $horeca_alkmaar) or die(mysql_error());
$row_uitbater = mysql_fetch_assoc($uitbater);
$totalRows_uitbater = mysql_num_rows($uitbater);
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cafe</title>
<style type="text/css">
<!--
body {
background-attachment: fixed;
background-image: url(../images/torenrechtsonder.jpg);
background-repeat: no-repeat;
background-position: left top;
margin: 0px;
padding: 0px;
}
-->
</style>
<link href="../css/tabel.css" rel="stylesheet" type="text/css" />
</head>
<body>
<br />
<table border="0" align="right">
<tr>
<td><table width="600" border="0" align="right" cellpadding="0" cellspacing="4" class="tabel">
<tr>
<td width="100" height="100" rowspan="2"><div align="center"><img src="../images/" alt="Foto" /></div></td>
<td><div align="left"></div></td>
<td width="150" rowspan="2"><div align="right"><a href=""<a/></div></td>
</tr>
<tr>
<td><div align="center"><strong></strong></div></td>
</tr>
</table></td>
Code (php)
</tr>
</table>
</body>
</html>
Code (php)
1
2
3
2
3
<?php
echo '<a href="'.$row_uitbater['website'].'">'.$row_uitbater['website'].'</a>';
?>
echo '<a href="'.$row_uitbater['website'].'">'.$row_uitbater['website'].'</a>';
?>
?
Code (php)
@Marco, zo gebruik je de a tag niet. Je geeft geen tekst mee die een link moet worden. Bovendien sluit je de a tag niet af.
Gewijzigd op 01/01/1970 01:00:00 door Jesper Diovo
Djemo schreef op 16.04.2008 14:55:
Ja zo dom ben ik nou ook weer niet.. ben me ook al aan het afvragen hoe ik daar bij kwam:)
http://www.horeca-alkmaar.nl/test/html/www.de-amstelhoek.nl i.p.v alleen www.de-amstelhoek.
Hoe kan ik er voor zorgen dat hij doorlinkt naar alleen www.de-amstelhoek.nl
Alvast bedankt.
Gewijzigd op 01/01/1970 01:00:00 door Marco Fijn
http://%22www.de-amstelhoek.nl%22/.
De mensen hoefen er zelf geen http:// voor te zetten alleen maar www.
We zijn al een eind op weg alleen die %22 moet nog weg.
Alvast bedankt weer voor jullie reacties
Ik heb een variabele gemaakt $http = "http://" en deze variabele zo neergezet $http, $row_uitbater en nu werkt ie wel super mannen dat jullie mij een eind op weg hebben geholpen bedankt.