PHP - No cargar mis css y mis controladores

 
Vista:
Imágen de perfil de SALVADOR

No cargar mis css y mis controladores

Publicado por SALVADOR (125 intervenciones) el 05/07/2014 23:13:58
y ya revisaste tus rutas,,,, el usar mayusculas o minusculas complica las cosas.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

No cargar mis css y mis controladores

Publicado por Ernesto (11 intervenciones) el 05/07/2014 23:17:06
Si ya revise todo todo pero nada de nad y tengo q presentarlo en unas horas y no se que hacer ayudenme por favor si es posible le paso el proyecto para q me ayuden pero kiero q se termine
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de SALVADOR

No cargar mis css y mis controladores

Publicado por SALVADOR (125 intervenciones) el 05/07/2014 23:24:56
pon el codigo donde haces referencia a tus CSS
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

No cargar mis css y mis controladores

Publicado por Ernesto (11 intervenciones) el 06/07/2014 01:09:55
Este todo es mi css pero alguien q me ayude x favor si es posible se le reconoce e trabajo dejenme un mensaje x privado y le paso el proyecto completo donde se tiene q implmentar todo esto porfavor depende mi practicas pre profesionales sele agradece por favor
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
/*********************************************************/
 
.input_text
{
    BACKGROUND-COLOR: #ffffff;
    BORDER-BOTTOM: #336699 1px solid;
    BORDER-LEFT: #336699 1px solid;
    BORDER-RIGHT: #336699 1px solid;
    BORDER-TOP: #336699 1px solid;
    COLOR: #30608f;
    FONT-FAMILY: Verdana;
    FONT-SIZE: 8pt
}
 
.input_text_combo
{
	BORDER-BOTTOM: #808080 1px solid;
	BORDER-LEFT: #808080 1px solid;
	BORDER-RIGHT: #808080 1px solid;
	BORDER-TOP: #808080 1px solid;
	COLOR: #000066;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	height: 18px;
}
 
.input_text_combo2
{
	BORDER-BOTTOM: #808080 1px solid;
	BORDER-LEFT: #808080 1px solid;
	BORDER-RIGHT: #808080 1px solid;
	BORDER-TOP: #808080 1px solid;
	COLOR: #000066;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	height: 100px;
}
 
 
.input_text_r /* input number AAV */
{
    BACKGROUND-COLOR: #ffffff;
    BORDER-BOTTOM: #808080 1px solid;
    BORDER-LEFT: #808080 1px solid;
    BORDER-RIGHT: #808080 1px solid;
    BORDER-TOP: #808080 1px solid;
    COLOR: black;
    FONT-FAMILY: Verdana;
    FONT-SIZE: 8pt;
    text-align: RIGHT;
}
/* Textos */
 
 
 
 
 
 
.text_normal
{
	COLOR: BLACK;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt;
    FONT-WEIGHT: bold;
}
 
 
.text_normal_1
{
	COLOR: #000099;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt;
    FONT-WEIGHT: bold;
}
 
 
.text_mensaje
{
	COLOR: RED;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt
}
 
 
.menu
{
	COLOR: #808080;
	FONT-FAMILY: Tahoma;
    FONT-SIZE: 8pt;
	FONT-WEIGHT:bold;
 
}
 
.text_menu
{
    FONT-FAMILY: Verdana, Helvetica, sans-serif;
    FONT-SIZE: 8pt;
    COLOR: NAVY
}
 
 
 
.fila_impar /* ex fila */
{
	COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
 
}
 
 
.fila_par /* ex fila1 */
{
	COLOR: #000066;
	FONT-FAMILY: Tahoma;
	BACKGROUND-COLOR:#D5F7FF;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
	font-style: normal;
 
}
 
 
.text_fila_3 /* ex fila1 */
{
	COLOR: white;
	FONT-FAMILY: Tahoma;
    BACKGROUND-COLOR:red;
	FONT-SIZE: 7.5pt;
	TEXT-ALIGN: center
}
 
 
/* USADO */
.text_izq_columna/* ex fila */
{
    TEXT-ALIGN: left;
}
 
 
/* USADO */
.text_der_columna/* ex fila */
{
    TEXT-ALIGN: right;
}
 
 
/* Titulos */
 
.text_titulo_1 /* ex titulo3 */
{
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt;
	COLOR: "ff0000";
	TEXT-DECORATION: none;
}
 
.text_titulo_2 /* ex titulo4 */
{
	COLOR: #000000;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	FONT-WEIGHT: bold;
	TEXT-ALIGN: left;
 
}
 
 
 
.text_titulo_3 /* ex titulo4 */
{
	COLOR: black;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt;
	FONT-WEIGHT: bold
 
}
 
.text_titulo_4 /* ex titulo2 (no usado) */
{
	COLOR: #000000;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 7.5pt;
	FONT-WEIGHT: bold
}
 
.text_titulo_5 /* ex titulo2 (no usado) */
{
	COLOR: black;
	FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
	FONT-SIZE: 7.5pt;
	FONT-WEIGHT: bold
}
 
.text_titulo_6 /* ex titulo 3A (no usado) */
{
	COLOR: black;
	FONT-FAMILY: Arial;
	FONT-WEIGHT: bold;
	FONT-SIZE: 8pt
}
 
/* Tablas */
 
.tabla_1 /* ex tabla1*/
{
	BACKGROUND-COLOR: WHITE;
}
 
 
.tabla_3 /* ex tabla */
{
	BACKGROUND-COLOR: #8EEE9F;
}
 
 
.tabla_4  {
	BACKGROUND-COLOR: "#c0c0c0";
	TEXT-ALIGN: center
}
 
 
 
.text_titulo_cabecera
{
    COLOR: #808080;
	FONT-FAMILY: Arial;
	FONT-SIZE: 18pt;
 
}
.texttotales {
	font-size: 10px;
	font-style: normal;
	color: #000099;
	line-height: normal;
	text-decoration: overline;
	font-weight: bold;
}
.FondoTabla {
	border: thin outset;
 
 
}
.tituloFormulario {
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #000066;
	text-transform: capitalize;
 
}
.boton {
	font-size: 15px;
	font-family: Tahoma;
	text-transform: none;
	text-align: center;
	font-weight: bold;
	font-variant: normal;
	color: #000066;
 
 
 
 
 
}
 
 
.boton1 {
	font-size: 20px;
	font-family: Tahoma;
	text-transform: none;
	text-align: center;
	font-weight: bold;
	font-variant: normal;
	color: #000066;
 
 
 
 
 
}
.tituloTabla {
 
	font-size: 11px;
	color: #FF6600;
	background-color: #FF6600;
	font-weight: bold;
	text-transform: capitalize;
	text-align: center;
 
}
.tituloFormulario2 {
	font-family: Tahoma;
	font-size: 14px;
	font-weight: bold;
	color: #000066;
	text-align: center;
}
.FondoFormulario {
 
	background-color: #E7E4E6;
	border: thin outset;
}
.tablaLista {
	font-size: 10px;
	color: #000066;
	text-decoration: underline;
	font-style: normal;
	font-weight: bold;
	font-family: Tahoma;
 
 
 
 
}
.tituloFormulario3 {
 
	font-family: Tahoma;
	font-size: 5px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #000000;
	text-transform: none;
}
.tituloFormularioMensaje {
	font-family: Tahoma;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #0000FF;
	text-transform: capitalize;
	text-align: center;
 
 
}
.cambiarFuncion{
	font-family: Tahoma;
	font-size: 11px;
	color: #006633;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	text-decoration: underline;
 
 
}
.tituloFormulario4 {
 
 
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FF0000;
	text-transform: none;
}
 
/**********************************************************/
 
 
BODY{
	COLOR: black;
	FONT-FAMILY: Arial;
	background-color: #E7E4E6;
 
}
 
body, input, select,td,textarea{
	font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
h1, h2, h3, h4, h5, h6, p, strong, div, form, acronym, label, table, td, th, span, a, hr, code, pre, hr {
	margin:0;
	padding:0;
	font-size: 1em;
	background-repeat:no-repeat;
	list-style-type:none;
}
 
a, a:visited, a:hover {
	color:#666; text-decoration:none; 
}
a:hover {
	text-decoration: underline;
}
img{
	border:none;
}
hr {
	height: 1px;
	color: #000;
	clear:both;
}
textarea {
	width:80%;
	height:200px;
}
dt {
	font-weight: bold;
}
.clear {
	clear: both;
}
h1 {
	font-size: 2em;
}
h1 a{
	color: #000;
}
div#header {
	background-color: #fea;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 20px 10px 30px 15px;
	margin: 10px 5% 20px 5%;
}
div#header ul{
	margin: 10px 0 0 0;
}
div#header ul li{
	list-style-type: none;
	float: left;
	padding: 0 10px 0 0;
	font-weight: bold;
}
div#header ul li a{
	display: block;
	color: #f00;
	border-left: 1px solid red;
	padding-left: 5px;
}
div#header ul li a:hover{
	border-left: 1px solid #000;
}
 
h2 {
	font-size: 1.2em;
	margin: 10px 0 10px 0;
}
 
h2 {
	font-size: 1.1em;
	margin: 10px 0 5px 0;
}
 
p {
	margin: 0 0 10px 0;
}
 
acronym {
	border-bottom: 1px dashed #000;
	cursor: help;
}
 
 
div#body {
	margin: 0 5% 20px 5%;
	padding: 20px 20px 20px 20px;
	border: 1px dashed #666;
}
 
div#validxhtml {
	float: right;
	background-color: #eee;
	border: 1px dotted #999;
	padding: 2px;
	margin: 5px;
	width:100px;
	text-align: center;
}
div#footer {
 
	border-top: 0px solid #666; 
	padding: 5px 5px 5px 5px;
	text-align:right;
}
 
div#footer span {
	float: left;
}
 
 
ul#stylelist {
	margin:0 0 30px 0;
}
 
ul#stylelist li {
	list-style-type: none;
	float:left;
	width:100px;
	border: 1px solid #ccc;
	background-color: #eee;
	padding:2px;
	margin-right: 2px;
}
/* ***************  */
 
 
table {
 
	border: thin none;
	margin: 0px 0;
}
 
 
thead tr {
	font-size: 11px;
	color: #FFFFFF;
	background-color: #000066;
	font-weight: normal;
	text-transform: capitalize;
	text-align: center;
	font-family: Tahoma;
}
 
th.sorted {
    background-color: orange;
    font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
 
 
}
th a, th a:visited {
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
}
th a:hover {
  text-decoration: underline;
  font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
}
 
 
 
th.sorted a, th.sortable a {
	background-position: right;
	display: block;
	width: 100%;
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
 
}
th.sortable a {
	background-image: url(../img/arrow_off.png);
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
 
}
th.order1 a {
	background-image: url(../img/arrow_down.png);
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
 
}
th.order2 a {
	background-image: url(../img/arrow_up.png);
	font-family: Tahoma;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
 
 
}
tr.odd {
  COLOR: #000066;
	FONT-FAMILY: Tahoma;
	BACKGROUND-COLOR:#D5F7FF;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
	font-style: normal;
 
}
tr.tableRowEven, tr.even {
COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
 
}
 
ul#showsource {
	float: right;
	background-color: #eee;
	border: 1px dotted #999;
	padding: 2px 4px 2px 4px;
	margin: 5px;
	width:100px;
	list-style-type: none;
}
 
 
/* test styles */
table.its thead tr {
  background-color: #69c;
}
table.its tr.even {
  COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
}
 
table.mars thead tr {
  background-color: #9c9;
}
table.mars tr.even {
  COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
}
table.mars tr.odd {
COLOR: #000066;
	FONT-FAMILY: Tahoma;
	BACKGROUND-COLOR:#D5F7FF;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
	font-style: normal;
}
 
 
table.simple thead tr {
  background-color: #eee;
}
table.simple tr.even {
 COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
}
 
table.simple {
	border: 1px solid #ccc;
	border-collapse: collapse;
}
 
table.simple td,table.simple th{
	border: 1px solid #ccc;
}
 
 
 
table.nocol tbody td,table.nocol tbody th{
	border-left: none;
	border-right: none;
}
 
 
 
 
table.report td, table.report th{
	font:   menu;
}
table.report th{
 
	background:   buttonface;
	border-width: 0px;
	border-style: solid;
	border-color: threedhighlight threedshadow threedshadow threedhighlight;
	cursor:       hand;
	}
table.report idcol {
	background: buttonface;
}
 
table.report tr.even{
	COLOR: #000066;
	BACKGROUND-COLOR: white;
	FONT-FAMILY: Tahoma;
	FONT-SIZE: 8pt;
	TEXT-ALIGN: left;
	text-transform: none;
}
table.report tbody {
	height: 100px;
	overflow: auto;
}
 
table.report {
	height: 120px;
	overflow: auto;
}
 
table.report tbody tr{
	height: 10px;
}
 
table.mark td.tableCellError {
	background-color: #d00;
	color: #fff;
}
 
table.sublist {
	margin: 0 0 0 0;
	width: 100%;
}
table.sublist td, table.sublist th {
	width: 50%;
}
div.exportlinks {
	background-color: #E7E4E6;
	border: 1px dotted #999;
	padding: 2px 4px 2px 4px;
	margin: -0px 0 10px 0;
	width: 75%;
}
 
span.export {
	padding: 0 4px 1px 20px;
	display:inline; display:inline-block;
	cursor: pointer;
}
 
span.excel {
	background-image: url(../img/ico_file_excel.png);
}
span.csv {
	background-image: url(../img/ico_file_csv.png);
}
span.xml {
	background-image: url(../img/ico_file_xml.png);
}
span.pdf {
	background-image: url(../img/ico_file_pdf.png);
}
 
span.pagebanner {
	background-color: #E7E4E6;
	border: 1px dotted #999;
	padding: 2px 4px 2px 4px;
	width: 75%;
	margin-top: 10px;
	display:block;
	border-bottom: none;
}
 
span.pagelinks {
	background-color:#E7E4E6;
	border: 1px dotted #999;
	padding: 2px 4px 2px 4px;
	width: 75%;
	display:block;
	border-top: none;
	margin-bottom: -0px;
}
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de SALVADOR

No cargar mis css y mis controladores

Publicado por SALVADOR (125 intervenciones) el 06/07/2014 04:48:04
No, manda donde referencias tu CSS, es decir,, la linea link href......
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

No cargar mis css y mis controladores

Publicado por Ernesto (11 intervenciones) el 06/07/2014 05:58:35
<link href="css/screen.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css" />

se que se pueden aumentar los ../css o ../VISTA/MANTENIMIENTO/css
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de xve
Val: 3.943
Oro
Ha mantenido su posición en PHP (en relación al último mes)
Gráfica de PHP

No cargar mis css y mis controladores

Publicado por xve (6935 intervenciones) el 06/07/2014 20:31:15
Hola Ernesto, podria ser que estuvieras en una pagina que esta dentro de una carpeta?

Entiendo que estan en la carpeta css/ que esta en la raiz de tu web, verdad?

Prueba a ponerlo así:
1
2
<link href="/css/screen.css" rel="stylesheet" type="text/css">
<link href="/css/style.css" rel="stylesheet" type="text/css">

Coméntanos, ok?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

No cargar mis css y mis controladores

Publicado por Ernesto (11 intervenciones) el 06/07/2014 21:01:25
tengo q color en todo los php

http://prntscr.com/400ho9

donde dice mantenimiento al ejecutar el INDEX sale esto http://prntscr.com/400jbn

peo yo quiero q salga asi http://prntscr.com/400k78

igual que los controladores me sale asi http://prntscr.com/400kxs pero yo necesito q me salga asi

http://prntscr.com/400lsn

PERO EN MI PROYECTO FINAL NO ME FUNCIONA NOS E QUE PASA SI ALGUIEN ME PUEDA DAR UN MENSAJE PRIVADO Y SE LO MANDO EL PROYECTO Y ME AYUDAN CON ESO SE LES AGRADECERA CLARO E Q TODO NO ES GRATIS ASI Q AUNQ SEA SE LES RECONOCERA EL TRABAJO SI PORFAVOR
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de SALVADOR

No cargar mis css y mis controladores

Publicado por SALVADOR (125 intervenciones) el 06/07/2014 21:15:26
Segun tu arbol de directorios, el index.php y frmprincipal.php estan en la misma carpeta, no deberias referenciarla como a un directorio inferior,,,

quita toda la ruta y solo deja frmprincipal.php en cuanto a los CSS, las rutas son tomadas a partir del directorio actual en el cual se encuentra el archivo, es decir si tu tienes midominio.com/index.php y haces referencia a un ../css/estilo.css lo que estas indicando es que se vaya una carpeta mas abajo y eso no existiria, la referencia seria solamente css/estilo.php es posible que por ahi vaya tu problema.

tambien se ve claramente que esto

../VISTA/MANTENIMIENTO/css

ni siquiera existe en tu arbol

es cuestion de que revises tus rutas, no es problema de php
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de SALVADOR

No cargar mis css y mis controladores

Publicado por SALVADOR (125 intervenciones) el 07/07/2014 03:13:40
a ver, por cada carpeta que vayas atras, debes aumentar un ../

Ejemplo especifico: en tu proyecto

tudominio.com/VISTA/SEGURIDAD/FrmLogin.php

Tienes:
<link href="./css/screen.css" rel="stylesheet" type="text/css">
Aqui le dices que busque en la direccion
tudominio.com/VISTA/SEGURIDAD/css/screen.css

Cambialo a:
<link href="../../css/screen.css" rel="stylesheet" type="text/css">
y le estarias indicando
tudominio.com/css/screen.css

para que sea la ruta real.

dudas mandame un email
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

No cargar mis css y mis controladores

Publicado por Emilio (1 intervención) el 08/07/2014 10:09:27
En que te sale código comprueba que hayas puesto el <? Al principio. A ver si te sirve.
En el que no sale el listado mira si has puesto bien el acceso a la base de datos, por ejemplo.
Un saludo
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

me sale la linea de codigo y no me muestra la lista

Publicado por Ernesto (11 intervenciones) el 08/07/2014 10:18:58
al inicio va el <?php y al final ?> pero me sale esto

$i=1; foreach ($LISTA as $REGISTRO) { $CODIGO=$REGISTRO['CODREGION']; $REGION=$REGISTRO['NOMBREGION']; ?> el el formulario
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
-1
Comentar
sin imagen de perfil

me sale la linea de codigo y no me muestra la lista

Publicado por Ernesto (11 intervenciones) el 08/07/2014 10:49:48
Gracias emilio si era eso me olvide del inicializar el <?php




BUENO AHORA QUEDA SOLO UN ERROR NO ME MUESTRA LA TABLA DE ABAJO DE MI FORMULARIO NI TAMPOCO LLAMA A LA BD NO SE Q PASO
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar