html - IMG control isn't showing image from internet -
my question pretty simple. in website, need display image internet i've stored in dropbox account. here's how i've tried that:
<img src="https://www.dropbox.com/sc/bf4rn63mgmfv1ry/kzmd3jzjgt">
but doesn't show anything! can't understand why; can explain this? in advance!
############################################################################################ don't pay attention <div class="span6"> <img src="https://www.dropbox.com/sc/bf4rn63mgmfv1ry/kzmd3jzjgt"> <form method="post" name="form-signin" action="../mtto_users/add_users.php" enctype="multipart/form-data"> <div class="table-responsive"> <table class="table"> <tr> <tr> <center><input type="file" name="foto" id="fileinput" class="file-input uniform_on"> </center> <tr> <td><input type="text" name="nombre" placeholder=" ingrese su nombre" required> <td><input type="text" name="usuario" placeholder=" ingrese un usuario" required> <tr> <td><input type="password" name="pass" placeholder=" ingrese una contraseƱa" required> <td><input type="password" name="pass2" placeholder=" reingrese contraseƱa" required> <tr> <td><input type="text" name="correo" placeholder="ingrese su correo" required> <td> <select class="form-control" name="selector"> <?php $query = mysql_query("select * tipo_usuario"); while($dato = mysql_fetch_assoc($query)) { # code... echo '<option name="'.$dato['tipo_usuario'].'">'; echo $dato['tipo_usuario'].'</option>'; } ?> </select> <tr> <td> <select class="form-control" name="selector2"> <option></option> <?php $query = mysql_query("select * hotel"); while($datos = mysql_fetch_assoc($query)){ echo '<option name="'.$datos['nombre_hotel'].'">'; echo $datos['nombre_hotel'].'</option>'; } ?> </select> <td> <center><button class="btn btn-info btn-block" class="btn btn-info">guardar </table> </div> </form>
the problem https://www.dropbox.com/sc/bf4rn63mgmfv1ry/kzmd3jzjgt
not link image; it's link dropbox page set show image. there's no great way actual link image appears restrictions set dropbox, got full link anyway dragging image new tab.
the actual url want https://photos-3.dropbox.com/t/0/aaa1dqwopegw_du8u9_oxob6txcwixwg2xfwxvii986pla/12/48488057/jpeg/1024x768/3/1397019600/0/2/image.jpg/ei4yxtf9ktzlkqwdhml4tx2hhffmqxvjqox3hyhb0c4
, , quick test using
<img src="https://photos-3.dropbox.com/t/0/aaa1dqwopegw_du8u9_oxob6txcwixwg2xfwxvii986pla/12/48488057/jpeg/1024x768/3/1397019600/0/2/image.jpg/ei4yxtf9ktzlkqwdhml4tx2hhffmqxvjqox3hyhb0c4" />
works expected.
Comments
Post a Comment