php.de

Zurück   php.de > Lösungen durch Skripte > Scriptbörse

Scriptbörse PHP Lösungen für nen schmalen Taler

Thema geschlossen
 
LinkBack Themen-Optionen Thema bewerten
Alt 14.09.2010, 11:42  
Neuer Benutzer
 
Registriert seit: 25.08.2010
Beiträge: 18
PHP-Kenntnisse:
Anfänger
Muchi123 befindet sich auf einem aufstrebenden Ast
Standard PHP Problem beim Weiterleiten aufeine neue Seite

Hallo,

und zwar habe ich ein Script gemacht werlches eine "Versionsnummer" per weiterbutton in die DB schreiben soll, ohne vorher nocheinmal die Seite neu zuladen. Ist sowas eigentlich möglich ?

Hier mal das Script:


PHP-Code:
<?php
# Mantis - a php based bugtracking system

# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net

# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.

    # --------------------------------------------------------
    # $Id: bug_report_advanced_page.php,v 1.66.2.1 2007-10-13 22:32:52 giallu Exp $
    # --------------------------------------------------------

    # This file POSTs data to report_bug.php

    
    
require_once( 'core.php' );
    require_once( 
$t_core_path.'projax_api.php' );


    
# this page is invalid for the 'All Project' selection except if this is a clone



    
if( $f_master_bug_id ) {
        
# master bug exists...
        
bug_ensure_exists$f_master_bug_id );

        
# master bug is not read-only...
        



        
access_ensure_project_levelconfig_get'report_bug_threshold' ) );

        
$f_build                $t_bug->build;
        
$f_platform                $t_bug->platform;
        
$f_os                    $t_bug->os;
        
$f_os_build                $t_bug->os_build;
        
$f_product_version        $t_bug->version;
        
$f_target_version        $t_bug->target_version;
        
$f_profile_id            0;
        
$f_handler_id            $t_bug->handler_id;

        
$f_category                $t_bug->category;
        
$f_reproducibility        $t_bug->reproducibility;
        
$f_severity                $t_bug->severity;
        
$f_priority                $t_bug->priority;
        
$f_summary                $t_bug->summary;
        
$f_description            $t_bug->description;
        
$f_steps_to_reproduce    $t_bug->steps_to_reproduce;
        
$f_additional_info        $t_bug->additional_information;
        
$f_view_state            $t_bug->view_state;

        
$t_project_id            $t_bug->project_id;
    } else {
        
access_ensure_project_levelconfig_get'report_bug_threshold' ) );

        
$f_build                gpc_get_string'build''' );
        
$f_platform                gpc_get_string'platform''' );
        
$f_os                    gpc_get_string'os''' );
        
$f_os_build                gpc_get_string'os_build''' );
        
$f_product_version        gpc_get_string'product_version''' );
        
$f_target_version        gpc_get_string'target_version''' );
        
$f_profile_id            gpc_get_int'profile_id');
        
$f_handler_id            gpc_get_int'handler_id');

        
$f_category                gpc_get_string'category'config_get'default_bug_category' ) );
        
$f_reproducibility        gpc_get_int'reproducibility'config_get'default_bug_reproducibility' ) );
        
$f_severity                gpc_get_int'severity'config_get'default_bug_severity' ) );
        
$f_priority                gpc_get_int'priority'config_get'default_bug_priority' ) );
        
$f_summary                gpc_get_string'summary''' );
        
$f_description            gpc_get_string'description''' );
        
$f_steps_to_reproduce    gpc_get_string'steps_to_reproduce'config_get'default_bug_steps_to_reproduce' ) );
        
$f_additional_info        gpc_get_string'additional_info'config_get 'default_bug_additional_info' ) );
        
$f_view_state            gpc_get_int'view_state'config_get'default_bug_view_status' ) );

        
$t_project_id            helper_get_current_project();

        
$t_changed_project        false;
    }

    
$f_report_stay            gpc_get_bool'report_stay'false );

    
html_page_top1lang_get'report_bug_link' ) );
    
html_page_top2();

    
?>





<br />
<div align="center">
<form name="report_bug_form" method="post" <?php if ( file_allow_bug_upload() ) { echo 'enctype="multipart/form-data"'; } ?> action="bug_report.php">
<?php echo form_security_field'bug_report' ?>
<table class="width75" cellspacing="1">

<!-- Title -->
<tr>
    <td class="form-title">
        <input type="hidden" name="m_id" value="<?php echo $f_master_bug_id ?>" />
        <input type="hidden" name="project_id" value="<?php echo $t_project_id ?>" />
        <?php echo lang_get'enter_report_details_title' ?>
    </td>
    <td class="right">
        <?php
            
if ( BOTH == config_get'show_report' ) ) {
                
print_bracket_link'bug_report.php' .
                    ( 
$f_master_bug_id '?m_id=' $f_master_bug_id '' ), lang_get'simple_report_link' ) );
            }
        
?>
    </td>
</tr>


<!-- Category -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category" width="30%">
        <?php echo '<span class="required">*</span>'lang_get'category' ?> <?php print_documentation_link'category' ?>
    </td>
    <td width="70%">
        <?php if ( $t_changed_project ) {
            echo 
"[" project_get_field$t_bug->project_id'name' ) . "] ";
        } 
?>
        <select <?php echo helper_get_tab_index() ?> name="category">
            <?php 
                
if ( is_blank$f_category ) ) {
                    echo 
'<option value="" selected="selected">'string_attributelang_get'select_option' ) ), '</option>';
                }

                
print_category_option_list$f_category ); 
            
?>
        </select>
    </td>
</tr>


<!-- Reproducibility -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'reproducibility' ?> <?php print_documentation_link'reproducibility' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="reproducibility">
            <?php print_enum_string_option_list'reproducibility'$f_reproducibility ?>
        </select>
    </td>
</tr>

<!-- Severity -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'severity' ?> <?php print_documentation_link'severity' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="severity">
            <?php print_enum_string_option_list'severity'$f_severity ?>
        </select>
    </td>
</tr>


<!-- Priority (if permissions allow) -->
<?php if ( access_has_project_levelconfig_get'handle_bug_threshold' ) ) ) { ?>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'priority' ?> <?php print_documentation_link'priority' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="priority">
            <?php print_enum_string_option_list'priority'$f_priority ?>
        </select>
    </td>
</tr>
<?php ?>


<!-- spacer -->
<tr class="spacer">
    <td colspan="2"></td>
</tr>


<!-- Profile -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'select_profile' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="profile_id">
            <?php print_profile_option_listauth_get_current_user_id(), $f_profile_id ?>
        </select>
    </td>
</tr>


<!-- instructions -->
<tr>
    <td colspan="2">
        <?php echo lang_get'or_fill_in' ?>
    </td>
</tr>


<!-- Platform -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'platform' ?>
    </td>
    <td>
        <?php
            
if ( config_get'allow_freetext_in_profile_fields' ) == OFF ) {
        
?>
                <select name="platform">
                    <option value=""></option>
                <?php
                        print_platform_option_list
$f_platform );
                
?>
                </select>
        <?php
            
} else {
                
projax_autocomplete'platform_get_with_prefix''platform', array( 'value' => $f_platform'size' => '32''maxlength' => '32''tabindex' => helper_get_tab_index_value() ) );
            }
        
?>
    </td>
</tr>


<!-- Operating System -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'os' ?>
    </td>
    <td>
        <?php
            
if ( config_get'allow_freetext_in_profile_fields' ) == OFF ) {
        
?>
                <select name="os">
                    <option value=""></option>
                <?php
                        print_os_option_list
$f_os );
                
?>
                </select>
        <?php
            
} else {
                
projax_autocomplete'os_get_with_prefix''os', array( 'value' => $f_os'size' => '32''maxlength' => '32''tabindex' => helper_get_tab_index_value() ) );
            }
        
?>
    </td>
</tr>


<!-- OS Version -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'os_version' ?>
    </td>
    <td>
        <?php
            
if ( config_get'allow_freetext_in_profile_fields' ) == OFF ) {
        
?>
                <select name="os_build">
                    <option value=""></option>
                <?php
                        print_os_build_option_list
$f_os_build );
                
?>
                </select>
        <?php
            
} else {
                
projax_autocomplete'os_build_get_with_prefix''os_build', array( 'value' => $f_os_build'size' => '16''maxlength' => '16''tabindex' => helper_get_tab_index_value() ) );
            }
        
?>
    </td>
</tr>


<!-- spacer -->
<tr class="spacer">
    <td colspan="2"></td>
</tr>


<?php
    $t_show_version 
= ( ON == config_get'show_product_version' ) )
            || ( ( 
AUTO == config_get'show_product_version' ) )
                        && ( 
countversion_get_all_rows$t_project_id ) ) > ) );
    if ( 
$t_show_version ) {
?>

<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        
    </td>
    <td>
        <?php
                $datenbank_host 
'localhost';
                
$datenbank_user 'root';
                
$datenbank_passwort '';
                
$datenbank_name 'bugtracker';
                
                
$datum date('Y.m.d H:i:s');

                
helper_get_current_project();
                
                
$f_project_id helper_get_current_project'project_id' );
                
                if (!isset(
$_POST['senden'])) $_POST['senden'] = '';
                if (!isset(
$_POST['version'])) $_POST['version'] = '';
                if (!isset(
$_POST['project_id'])) $_POST['project_id'] = '';

                
                

                            if (
$_POST['senden'] != '' AND $_POST['version'] != ''   ) {

                                
$link = @mysql_connect($datenbank_host,
                                    
$datenbank_user$datenbank_passwort);

                                if (!
$link) {
                                    die(
'keine Verbindung möglich: ' .
                                        
mysql_error());
                                }

                                
$db_selected =
                                    @
mysql_select_db($datenbank_name$link);

                                if (!
$db_selected) {
                                    die (
'Kann '.$datenbank_name.' nicht
                                        benutzen : ' 
mysql_error());
                                }
                                
                                
$sql_insert "INSERT INTO `mantis_project_version_table`
                                    (`project_id`,`version`,`date_order`)
                                    VALUES('" 
$f_project_id "' , '" mysql_escape_string($_POST['version']) . " ', Now());";
                                    
                

                                if (@
mysql_query($sql_insert$link) != false) {
                         
                                
                                    
$_POST['name'] = '';
                                        
            
                                        } else {

                                    
                                            
                                        
                                    }
                                    


                                    @
mysql_close($link);
                                }
                        
                                
                                echo 
' Version: <input type="text" name="version"
                                    value="'
.htmlspecialchars($_POST['version']).'"/>
                                    <br/><br/>'
;
                                    
                                
                                
                            
                            
                                echo 
'<input type="hidden" name="version" Value="' htmlspecialchars($_POST['version']) . '"/>';
                                
                                
    
?>
                                        
            


<?php
    
}
?>

<!-- Product Build -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'product_build' ?>
    </td>
    <td>
        <input <?php echo helper_get_tab_index() ?> type="text" name="build" size="32" maxlength="32" value="<?php echo $f_build ?>" />
    </td>
</tr>


<!-- Handler (if permissions allow) -->
<?php if ( access_has_project_levelconfig_get'update_bug_assign_threshold' ) ) ) { ?>
<!-- spacer -->
<tr class="spacer">
    <td colspan="2"></td>
</tr>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'assign_to' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="handler_id">
            <option value="0" selected="selected"></option>
            <?php print_assign_to_option_list$f_handler_id ?>
        </select>
    </td>
</tr>
<?php ?>

<!-- Target Version (if permissions allow) -->
<?php if ( access_has_project_levelconfig_get'roadmap_update_threshold' ) ) ) { ?>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'target_version' ?>
    </td>
    <td>
        <select <?php echo helper_get_tab_index() ?> name="target_version">
            <?php print_version_option_list() ?>
        </select>
    </td>
</tr>
<?php ?>


<!-- spacer -->
<tr class="spacer">
    <td colspan="2"></td>
</tr>


<!-- Summary -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <span class="required">*</span><?php echo lang_get'summary' ?> <?php print_documentation_link'summary' ?>
    </td>
    <td>
        <input <?php echo helper_get_tab_index() ?> type="text" name="summary" size="105" maxlength="128" value="<?php echo $f_summary ?>" />
    </td>
</tr>


<!-- Description -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <span class="required">*</span><?php echo lang_get'description' ?> <?php print_documentation_link'description' ?>
    </td>
    <td>
        <textarea <?php echo helper_get_tab_index() ?> name="description" cols="80" rows="10"><?php echo $f_description ?></textarea>
    </td>
</tr>


<!-- Steps to Reproduce -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'steps_to_reproduce' ?> <?php print_documentation_link'steps_to_reproduce' ?>
    </td>
    <td>
        <textarea <?php echo helper_get_tab_index() ?> name="steps_to_reproduce" cols="80" rows="10"><?php echo $f_steps_to_reproduce ?></textarea>
    </td>
</tr>


<!-- Additional Information -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'additional_information' ?> <?php print_documentation_link'additional_information' ?>
    </td>
    <td>
        <textarea <?php echo helper_get_tab_index() ?> name="additional_info" cols="80" rows="10"><?php echo $f_additional_info ?></textarea>
    </td>
</tr>


<tr class="spacer">
    <td colspan="2"></td>
</tr>


<!-- Custom Fields -->
<?php
    $t_custom_fields_found 
false;
    
$t_related_custom_field_ids custom_field_get_linked_ids$t_project_id );

    foreach( 
$t_related_custom_field_ids as $t_id ) {
        
$t_def custom_field_get_definition$t_id );
        if( ( 
$t_def['display_report'] || $t_def['require_report']) && custom_field_has_write_access_to_project$t_id$t_project_id ) ) {
            
$t_custom_fields_found true;
?>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php if($t_def['require_report']) {?><span class="required">*</span><?php ?><?php echo string_displaylang_get_defaulted$t_def['name'] ) ) ?>
    </td>
    <td>
        <?php print_custom_field_input$t_def, ( $f_master_bug_id === ) ? null $f_master_bug_id ?>
    </td>
</tr>
<?php
        
}
    } 
# foreach( $t_related_custom_field_ids as $t_id )
?>


<?php if ( $t_custom_fields_found ) { ?>
<!-- spacer -->
<tr class="spacer">
    <td colspan="2">&nbsp;</td>
</tr>
<?php # custom fields found ?>


<!-- File Upload (if enabled) -->
<?php if ( file_allow_bug_upload() ) {
    
$t_max_file_size = (int)minini_get_number'upload_max_filesize' ), ini_get_number'post_max_size' ), config_get'max_file_size' ) );
?>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'upload_file' ?>
        <?php echo '<span class="small">(' lang_get'max_file_size' ) . ': ' number_format$t_max_file_size/1000 ) . 'k)</span>'?>
    </td>
    <td>
        <input type="hidden" name="max_file_size" value="<?php echo $t_max_file_size ?>" />
        <input <?php echo helper_get_tab_index() ?> name="file" type="file" size="60" />
    </td>
</tr>
<?php ?>


<!-- View Status -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'view_status' ?>
    </td>
    <td>
<?php
    
if ( access_has_project_levelconfig_get'set_view_status_threshold' ) ) ) {
?>
        <input <?php echo helper_get_tab_index() ?> type="radio" name="view_state" value="<?php echo VS_PUBLIC ?><?php check_checked$f_view_stateVS_PUBLIC ?> /> <?php echo lang_get'public' ?>
        <input <?php echo helper_get_tab_index() ?> type="radio" name="view_state" value="<?php echo VS_PRIVATE ?><?php check_checked$f_view_stateVS_PRIVATE ?> /> <?php echo lang_get'private' ?>
<?php
    
} else {
        echo 
get_enum_element'project_view_state'$f_view_state );
    }
?>
    </td>
</tr>

<!-- Relationship (in case of cloned bug creation...) -->
<?php
    
if( $f_master_bug_id ) {
?>
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'relationship_with_parent' ?>
    </td>
    <td>
        <?php relationship_list_box/* none */ -2"rel_type"falsetrue ?>
        <?php PRINT '<b>' lang_get'bug' ) . ' ' bug_format_id$f_master_bug_id ) . '</b>' ?>
    </td>
</tr>
<?php
    
}
?>

<!-- Report Stay (report more bugs) -->
<tr <?php echo helper_alternate_class() ?>>
    <td class="category">
        <?php echo lang_get'report_stay' ?> <?php print_documentation_link'report_stay' ?>
    </td>
    <td>
        <input <?php echo helper_get_tab_index() ?> type="checkbox" name="report_stay" <?php check_checked$f_report_stay ?> /> (<?php echo lang_get'check_report_more_bugs' ?>)
    </td>
</tr>



<!-- Submit Button -->
<tr>
    <td class="left">
        <span class="required"> * <?php echo lang_get'required' ?></span>
    </td>
    <td class="left">
        
        <input <?php echo helper_get_tab_index() ?> type="submit" class="button" value="<?php echo lang_get'submit_report_button' ?>" />
    </td>
</tr>



Es soll der Datenbank teil bei dem unteren Submit button mit aufgerufen werden, weiß aber nicht wie.
Muchi123 ist offline  
Sponsor Mitteilung
PHP Code Flüsterer

Registriert seit: 21.08.2005
Beiträge: 4682
PHP-Kenntnisse:
Fortgeschritten

Alt 14.09.2010, 11:44  
Moderator
 
Benutzerbild von Asipak
 
Registriert seit: 18.07.2005
Beiträge: 4.072
Asipak sorgt für eine eindrucksvolle AtmosphäreAsipak sorgt für eine eindrucksvolle Atmosphäre
Standard

Noch einmal für mich zum Verständnis: DU hast das Script geschrieben?
Asipak ist offline  
Alt 14.09.2010, 11:50  
Neuer Benutzer
 
Registriert seit: 25.08.2010
Beiträge: 18
PHP-Kenntnisse:
Anfänger
Muchi123 befindet sich auf einem aufstrebenden Ast
Standard

Nene nicht geschrieben umgeändert xD Sry hatte mich falsch ausgedrückt xD Das ist der Mantis Bugtracker kram xD
Muchi123 ist offline  
Alt 14.09.2010, 11:50  
Erfahrener Benutzer
 
Benutzerbild von wolf29
 
Registriert seit: 17.03.2010
Beiträge: 1.838
PHP-Kenntnisse:
Fortgeschritten
wolf29 wird schon bald berühmt werdenwolf29 wird schon bald berühmt werden
Standard

Für nen "Anfänger" gar nicht schlecht - vor allem der Kommentar im Quellcode überzeugt mich

Tipp: das wird vermutlich keiner für dich so ad hoc fertig machen. Wäre eher was für die Jobbörse hier, da Du eine "bestehende" Software verändern willst und das meist einen nicht unerheblichen Aufwand darstellt (sich z.B. einzulesen in fremden Code usw.)

wolf29
__________________
while (!asleep()) sheep++;

Unterschätze nie jemanden der einen Schritt zurück geht! Er könnte Anlauf nehmen.
wolf29 ist offline  
Alt 14.09.2010, 11:52  
Moderator
 
Benutzerbild von Asipak
 
Registriert seit: 18.07.2005
Beiträge: 4.072
Asipak sorgt für eine eindrucksvolle AtmosphäreAsipak sorgt für eine eindrucksvolle Atmosphäre
Standard

Dann wende dich doch bitte direkt an die Entwickler. Ansonsten ist dieses Thema ein Fall für die Scriptbörse.

http://www.php.de/php-einsteiger/675...sumfragen.html

[MOD: Thread verschoben]
Asipak ist offline  
Alt 14.09.2010, 21:47  
moderatives Dielektrikum
 
Benutzerbild von nikosch
 
Registriert seit: 21.05.2008
Beiträge: 35.994
PHP-Kenntnisse:
Fortgeschritten
nikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunftnikosch hat eine strahlende Zukunft
Standard

Ein Thread reicht.

[MOD: Thread geschlossen]
__________________
--
One pixel is still too big. Please make it smaller. ASAP.

Initiative Mittelstand.
Die wichtigste Gestaltungsregel im Screendesign ist Pi mal Daumen des Arbeitgebers.
--
nikosch ist gerade online  
Thema geschlossen


Themen-Optionen
Thema bewerten
Thema bewerten:

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an
Gehe zu

Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
[Erledigt] mit php eine neue php seite kevbog PHP Tipps 2010 10 14.03.2010 13:03
[Erledigt] Ajax Paginations Problem (Request bei erreich der letzten möglichen Seite kn0wledge JavaScript, Ajax und mehr 4 01.02.2010 16:32
[Erledigt] nach Login auf zuletzt besuchte Seite weiterleiten malungo PHP Tipps 2009 5 02.02.2009 21:57
Problem mit einbindung von javascript auf einer php seite mysteryxxx PHP Tipps 2009 7 01.02.2009 16:40
[Erledigt] ID an andere Seite weiterleiten AJ79 PHP Tipps 2008 5 12.11.2008 14:46
Neue Seite aufrufen mike-loewe PHP Tipps 2008 6 17.01.2008 10:24
Word Datei öffnen + neue Seite PHP Tipps 2005-2 1 20.10.2005 12:27
Link soll bei klik seite schließen und eine neue öffnen wie? djrace HTML, Usability und Barrierefreiheit 7 23.07.2005 18:53
Kontaktformular, welches auf neue html Seite führt PHP Tipps 2005-2 4 20.07.2005 11:21
PHP/Javascript Problem zum seite neu laden/aktualisieren DDogg PHP Tipps 2005 2 30.05.2005 10:30
Neue Seite öffnen verhindern HTML, Usability und Barrierefreiheit 1 20.08.2004 23:30
Templates (?) - dynamische Seite - Problem PHP Tipps 2004 0 15.07.2004 16:45
Neue seite in Tabelle? imported_DJ Nuno HTML, Usability und Barrierefreiheit 3 04.07.2004 10:48
[Erledigt] PHP Eine neue PHP seite automatisch öffnen PHP Tipps 2004 1 19.06.2004 12:40

Besucher kamen über folgende Suchanfragen bei Google auf diese Seite
php echo neue seite aufrufen, php echo auf neue neue html seite, $f_view_state = gpc_get_int( \'view_state\', config_get( \'default_bug_view_status\' ) ), allow_freetext_in_profile_fields, daten in db schreiben und auf andere seite weiterleiten php, php im code auf neue seite leiten, radio seite umleiten php, .php seite problem, gpc_get_string select, \general

Alle Zeitangaben in WEZ +2. Es ist jetzt 01:12 Uhr.




Powered by vBulletin® Version 3.7.2 (Deutsch)
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Aprilia-Forum, Aquaristik-Forum, Liebeskummer-Forum, Zierfisch-Forum, Geizkragen-Forum