miércoles, 6 de diciembre de 2017

sesiones



https://foro.elhacker.net/desarrollo_web/proteger_paginas_en_php_con_sesiones-t31971.0.html

material medical pag

Links medicina

Usefeul ovcabulary medical
http://classtask1905.blogspot.com.co/p/saber-pro-training-course.html

ed
http://classtask1905.blogspot.com.co/2017/09/phrasal-verbs-medical-3s.html

general knowledge
http://classtask1905.blogspot.com.co/2017/08/general-knowledge-medical.html



bones vocabulary game
http://classtask1905.blogspot.com.co/2017/06/grupo-de-medicina-bones-vocabulary.html

body parts
http://classtask1905.blogspot.com.co/2017/06/grupo-medicina-parts-of-body.html

adjectives

http://classtask1905.blogspot.com.co/2017/05/30-adjectives.html

medical vocabulary tour
http://classtask1905.blogspot.com.co/2016/06/medical-vocabulary-tour-2.html

phrasal verbs
http://classtask1905.blogspot.com.co/2016/05/phrasal-verbs-training-part-2-students.html

food
http://classtask1905.blogspot.com.co/2016/04/food-vocabulary-exercise.html
medical vocabulary 10

http://classtask1905.blogspot.com.co/2016/03/medical-vocabulary-10.html

opposites synonyms
http://classtask1905.blogspot.com.co/2016/03/opposites-synonyms-wh-words-vocabulary.html


phrasal verbs interview advanced
http://classtask1905.blogspot.com.co/2016/02/phrasal-verbs-interview-practice.html

reading comprehension
http://classtask1905.blogspot.com.co/2015/12/reading-comprehension-exam-3.html
medical anatomy 5
http://classtask1905.blogspot.com.co/2015/11/anatomy-exam-5-vocabulary-game.html
medical anatomy 3


http://classtask1905.blogspot.com.co/2015/11/anatomy-3.html

anatomy ladder 1
http://classtask1905.blogspot.com.co/2015/11/anatomy-for-medical-students-vocabulary.html

doctors vocabulary 1 blue
http://classtask1905.blogspot.com.co/2015/09/doctors-vocabulary-exercise-1.html

muscles vocabulary game
http://classtask1905.blogspot.com.co/2015/09/muscles-muscles-muscles.html

medical vocabulary 10 grill
http://classtask1905.blogspot.com.co/2015/08/a-medicine-vocabulary-10.html

hospital jobs
http://classtask1905.blogspot.com.co/2015/08/hospital-jobs-vocabulary.html

prepositions
http://classtask1905.blogspot.com.co/2015/07/basic-prepositions-exercise-for.html

medical tools
http://classtask1905.blogspot.com.co/2015/04/medical-tools-basic-vocabulary.html

at the hospital vocabulary grill 1
http://classtask1905.blogspot.com.co/2015/04/at-hospital-vocabulary.html















martes, 5 de diciembre de 2017

err


http://www.uterra.com/codigo_php/codigo_php.php?ref=como_proteger_varias_paginas_mediante_usuario_y_clave_con_php


primer archivo include que funciona


http://www.comocreartuweb.com/consultas/showthread.php/49245-%C2%BFPuedo-hacer-include-en-html

miércoles, 29 de noviembre de 2017

error 3


manejar menu vertical
https://www.lawebdelprogramador.com/foros/HTML/708114-Repetir-menu-en-todas-las-paginas.html


manejo de sesiones :

http://aprendeenlinea.udea.edu.co/lms/moodle/mod/page/view.php?id=75232



https://es.khanacademy.org/computing/computer-programming/html-css/html-tags-continued/p/project-recipe-book página lib ro de recetas


http://www.uterra.com/codigo_php/codigo_php.php?ref=como_proteger_varias_paginas_mediante_usuario_y_clave_con_php


pagina s protegidas 1 y 2



best con md5 https://norfipc.com/codigos/como-proteger-pagina-web-contrasena-php.php


hash ida y vuelta https://my2bits.wordpress.com/2007/09/19/creando-un-hash-de-ida-y-vuelta-con-md5-en-php/


3 archivos funcionan en md5 http://pawnscript.com/foro/viewtopic.php?f=68&t=4515

Entar.php

$usuario = $_POST['Usuario'];
$clave = $_POST['Clave'];
$usuarioreg = 'user'.$usuario.'.txt';
if (file_exists($usuarioreg)) {
$md5cod = md5($clave);
$cargaruser = fopen($usuarioreg, "r");
$clavecod = fread($cargaruser, filesize($usuarioreg));
if (md5($clave) === $clavecod) {
echo 'La Contraseña es correcta';
} else {
echo 'La Contraseña es incorrecta';
}
fclose($cargaruser);
} else {
echo 'El Usuario ingresado no existe';
}
?>

Registro.php

$usuario = $_POST['Usuario'];
$clave = $_POST['Clave'];
$usuarioreg = 'user'.$usuario.'.txt';

if (file_exists($usuarioreg)) {
echo 'El Usuario ingresado ya esta registrado';
} else {
$md5cod = md5($clave);
$registro = fopen($usuarioreg,'w');
fwrite($registro,$md5cod);
fclose($registro);
echo 'El Usuario se '.$usuario.' registro correctamente';
}
?>

Formulario en html5




Sistema de Registro en MD5





Registro


















Ingresar













lunes, 27 de noviembre de 2017

Don Henley: Boys of summer (Very difficult)






error2bd

buscar en bd

(funciones php

function check($usuario, $clave){
return ($usuario == "webmaster" && $clave == "123456");
}
function logged(){
if(check($_SESSION[usuario],$_SESSION[clave]){
return true;
}else{
if(isset($_POST[usuario]) && isset($_POST[clave])){
$_SESSION = $_POST;
return check($_SESSION[usuario],$_SESSION[clave]);
}else{
echo '
';
return false;
}
}
}
?>


)

consultar php
(

require_once('./funciones.php');
echo '


';
if(logged()){
//codigo de la pagina a la que solo se accede logueado
}
echo '


';
?>
--------------------------------

)

domingo, 12 de noviembre de 2017

error

Contactese con su profesor para que le asigne una contraseña


https://www.lawebdelprogramador.com/codigo/PHP/2119-Acceso-con-usuario-y-contrasena.html

https://jonathanmelgoza.com/blog/como-hacer-un-login-en-php/

http://www.tufuncion.com/login_autentificacion_php

http://www.masiosare.mx/login-sin-base-de-datos/ sencillo poco seguro


http://www.masiosare.mx/login-sin-base-de-datos/ sencillo

login en basse ddatos

http://comocrearmiweb.net/login-php-mysql/ login en basse de datops explicado

https://www.lawebdelprogramador.com/codigo/PHP/3562-Sistema-de-login-con-sesiones-y-mysqli.html

https://medium.com/daniiable-in-the-workplace/como-hacer-un-login-con-javascript-y-html-sencillo-aff1dab6a6bf 2 o mas usuarios

https://medium.com/daniiable-in-the-workplace/como-hacer-un-login-con-javascript-y-html-sencillo-aff1dab6a6bf bueno

domingo, 15 de octubre de 2017

miércoles, 11 de octubre de 2017

furniture vocabulary game

src="http://img104.xooimage.com/files/b/2/6/basic-35-con-pict...o-11blog-46ca254.swf"
type="application/x-shockwave-flash" width="800">

lunes, 14 de agosto de 2017

herramientas

http://ttsreader.com/es/

http://online-voice-recorder.com/es/

http://img110.xooimage.com/files/c/d/e/hwineeumssagud-51b58cd.swf

http://img110.xooimage.com/files/c/d/e/hwineeumssagud-51b58cd.swf

http://img110.xooimage.com/files/c/d/e/hwineeumssagud-51b58cd.swf

sábado, 22 de julio de 2017

nmnm

src="http://classtask1905.com/wp/wp-content/uploads/youre-the-one-that-i-want-c6.swf"
type="application/x-shockwave-flash" width="950">

miércoles, 28 de junio de 2017

MeDicine Group Listening eXercise

src="http://img110.xooimage.com/files/2/4/e/new-york-listo-null.fla-4bb834e.swf"
type="application/x-shockwave-flash" width="1050">

martes, 6 de junio de 2017

ejercicio 8 clase 6pm

src="http://img110.xooimage.com/files/2/d/c/chocolate-listen-4ad182d.swf"
type="application/x-shockwave-flash" width="1000">

ejercicio 7

src="http://img110.xooimage.com/files/a/f/9/typing-careers-co...regido-2-48270b9.swf"
type="application/x-shockwave-flash" width="800">

ejercicio 7 6 pm

src="http://img110.xooimage.com/files/9/1/6/listening-gym-5-ayudas-4938ce1.swf"
type="application/x-shockwave-flash" width="1000">

Ejercicio 6 Business

src="http://img110.xooimage.com/files/d/8/d/typing-listening-...gers-blo-4896128.swf"
type="application/x-shockwave-flash" width="800">

ejercicio 4. 6 pm

ejercicio 3 clase 6 pm

ejercicio 3

src="http://img110.xooimage.com/files/0/8/a/iwntbreque2-4d0e54e.swf"
type="application/x-shockwave-flash" width="1010">

ejercicio 2 Listening

src="http://img110.xooimage.com/files/d/7/4/the-cars-drive-new-2015-497dae5.swf"
type="application/x-shockwave-flash" width="1000">

ingles 2 ejercicio 1

viernes, 28 de abril de 2017

ejercicio 8

ejercicio 7

ejercicio 7

ejercicio 6


ejercicio 5

ejercicio 4 viernes

src="http://img110.xooimage.com/files/2/4/e/new-york-listo-null.fla-4bb834e.swf"
type="application/x-shockwave-flash" width="1050">

ejercicio 3 viernes

ejercicio viernes 6pm


jueves, 6 de abril de 2017

transport exam

Sonique. Your Love it Feels so Good xxxxxx


Icona Pop. It´s my Party

Sneaker Pimps. Six Undergroundxxxx

let me love you

closer

Blue jean

speaking asking questions did have

viernes, 27 de enero de 2017

80´s Songs lyrics Exercises



















80´s









Lyrics Exercises



































I ran so far away





















Wishing (If I had a photograph of you)













Love will lead you back














Words (F. Davis)














Opportunities















Don´t get me wrong














Motion of love













love is a stranger














Heart of glass













Girl I´m Gonna miss You













Close to you (Carpenters)













Fascination Street













Tragedy (The Steps Version)













Obssession (Animotion)














Tainted Love














Life goes on (Old Exercise)














Fire in the sky (Ozzy. O.)













Sweet Child of Mine













Because you Loved me
















We don´t need another hero













Suddenly













Major Tom Coming Home











Borderline














Eyes Without a face













Change













Love Comes Quickly













That´s all













All Through the Night













Billie Jean














Dreams













Paranoid













Just Like Heaven



























Everybody wants to rule the world














Where the Streets have no name
















Radio ga Ga